forked from browserstack/browserstack-local-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.d.ts
More file actions
27 lines (26 loc) · 633 Bytes
/
index.d.ts
File metadata and controls
27 lines (26 loc) · 633 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
declare module "browserstack-local" {
interface Options {
key: string;
verbose: boolean;
force: boolean;
only: string;
onlyAutomate: boolean;
forceLocal: boolean;
localIdentifier: string;
folder: string;
proxyHost: string;
proxyPort: string;
proxyUser: string;
proxyPass: string;
forceProxy: boolean;
logFile: string;
parallelRuns: string;
binarypath: string;
[key: string]: string | boolean;
}
class Local {
start(options: Partial<Options>, callback: (error?: Error) => void): void;
isRunning(): boolean;
stop(callback: () => void): void;
}
}