File tree Expand file tree Collapse file tree 1 file changed +38
-0
lines changed Expand file tree Collapse file tree 1 file changed +38
-0
lines changed Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments