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 2ad122c commit b8d4474Copy full SHA for b8d4474
vscode-client/testcontrollermanager.ts
@@ -45,11 +45,11 @@ interface RobotLogMessageEvent {
45
}
46
47
class DidChangeEntry {
48
- constructor(timer: number, tokenSource: vscode.CancellationTokenSource) {
49
- this.timer = timer;
+ constructor(timerHandle: NodeJS.Timeout, tokenSource: vscode.CancellationTokenSource) {
+ this.timer = timerHandle;
50
this.tokenSource = tokenSource;
51
52
- public readonly timer: number;
+ public readonly timer: NodeJS.Timeout;
53
public readonly tokenSource: vscode.CancellationTokenSource;
54
55
public cancel() {
0 commit comments