Skip to content

Commit b8d4474

Browse files
committed
fix declaration of DidChangeEntry
1 parent 2ad122c commit b8d4474

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

vscode-client/testcontrollermanager.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@ interface RobotLogMessageEvent {
4545
}
4646

4747
class DidChangeEntry {
48-
constructor(timer: number, tokenSource: vscode.CancellationTokenSource) {
49-
this.timer = timer;
48+
constructor(timerHandle: NodeJS.Timeout, tokenSource: vscode.CancellationTokenSource) {
49+
this.timer = timerHandle;
5050
this.tokenSource = tokenSource;
5151
}
52-
public readonly timer: number;
52+
public readonly timer: NodeJS.Timeout;
5353
public readonly tokenSource: vscode.CancellationTokenSource;
5454

5555
public cancel() {

0 commit comments

Comments
 (0)