Skip to content

Commit cebc582

Browse files
Merge pull request #20 from Shivanshu-lambdatest/master
added package lock and fixed lint errors
2 parents 2b0e3ad + 673003a commit cebc582

File tree

5 files changed

+2685
-4
lines changed

5 files changed

+2685
-4
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,4 @@
22
*.DS_Store
33
*.log
44
.vscode/
5-
package-lock.json
65
/.lambdatest

.npmignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,6 @@
44
.gitignore
55
.git/
66
/node_modules/
7-
/.lambdatest
7+
/.lambdatest
8+
/.circleci
9+
/.github/workflow

index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ declare module "@lambdatest/node-tunnel" {
2626
class Tunnel {
2727
start(options: Partial<Options>, callback: (error?: Error) => void): void;
2828
isRunning(): boolean;
29-
stop(callback: (error?: Error, status: boolean) => void): Promise<void>;
29+
stop(callback: (status: boolean, error?: Error) => void): Promise<void>;
3030
}
3131
}
3232

0 commit comments

Comments
 (0)