Skip to content

Commit 49cccb0

Browse files
Jay DhameliyaGitHub Enterprise
authored andcommitted
Merge pull request mathworks#53 from development/jdhameli-compilefix
Add RunOutputs.d.ts
2 parents 27fddf0 + ac04f62 commit 49cccb0

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed

src/mvm/impl/RunOptions.d.ts

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
/**
2+
* The capabilities of the text sink
3+
*/
4+
export interface SinkTraits {
5+
_supportsMore: boolean;
6+
_supportsHotlinks: boolean;
7+
_useDiary: boolean;
8+
_useEcho: boolean;
9+
_useLogging: boolean;
10+
}
11+
export declare enum Capability {
12+
InteractiveCommandLine = "InteractiveCommandLine",
13+
Swing = "Swing",
14+
ComplexSwing = "ComplexSwing",
15+
LocalClient = "LocalClient",
16+
WebWindow = "WebWindow",
17+
ModalDialogs = "ModalDialogs",
18+
Debugging = "Debugging"
19+
}
20+
export declare const FullCapabilitiesList: Capability[];
21+
/**
22+
* The run options for a given request
23+
*/
24+
export interface RunOptions {
25+
capabilitiesList?: string[];
26+
dequeueMode?: string;
27+
eventConnections: any;
28+
eventNames?: any;
29+
queueName?: string;
30+
groupNames?: string[];
31+
suppressDebugControlOutput?: boolean;
32+
errSinkTraits?: SinkTraits;
33+
useNullErrSink?: boolean;
34+
outSinkTraits?: SinkTraits;
35+
useNullOutSink?: boolean;
36+
commandWindowWidth?: number;
37+
commandWindowHeight?: number;
38+
}

0 commit comments

Comments
 (0)