We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d238484 commit 07aa1cbCopy full SHA for 07aa1cb
index.d.ts
@@ -19,9 +19,11 @@ declare module "browserstack-local" {
19
[key: string]: string | boolean;
20
}
21
22
+ type LocalOptions = Partial<Options>;
23
+
24
class Local {
- start(options: Partial<Options>, callback: (error?: Error) => void): void;
25
+ start(options: LocalOptions, callback: (error?: Error) => void): void;
26
isRunning(): boolean;
- stop(callback: () => void): void;
27
+ stop(callback: (error?: Error) => void): void;
28
29
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "browserstack-local",
3
- "version": "1.4.5",
+ "version": "1.4.6",
4
"description": "Nodejs bindings for BrowserStack Local",
5
"engine": "^0.10.44",
6
"main": "index.js",
0 commit comments