@@ -20,7 +20,7 @@ export class CppTools implements CppToolsTestApi {
2020 private version : Version ;
2121 private providers : CustomConfigurationProvider1 [ ] = [ ] ;
2222 private failedRegistrations : CustomConfigurationProvider [ ] = [ ] ;
23- private timers = new Map < string , NodeJS . Timer > ( ) ;
23+ private timers = new Map < string , NodeJS . Timeout > ( ) ;
2424
2525 constructor ( version : Version ) {
2626 if ( version > Version . latest ) {
@@ -34,7 +34,7 @@ export class CppTools implements CppToolsTestApi {
3434 private addNotifyReadyTimer ( provider : CustomConfigurationProvider1 ) : void {
3535 if ( this . version >= Version . v2 ) {
3636 const timeout : number = 30 ;
37- const timer : NodeJS . Timer = global . setTimeout ( ( ) => {
37+ const timer : NodeJS . Timeout = global . setTimeout ( ( ) => {
3838 console . warn ( `registered provider ${ provider . extensionId } did not call 'notifyReady' within ${ timeout } seconds` ) ;
3939 } , timeout * 1000 ) ;
4040 this . timers . set ( provider . extensionId , timer ) ;
@@ -43,7 +43,7 @@ export class CppTools implements CppToolsTestApi {
4343
4444 private removeNotifyReadyTimer ( provider : CustomConfigurationProvider1 ) : void {
4545 if ( this . version >= Version . v2 ) {
46- const timer : NodeJS . Timer | undefined = this . timers . get ( provider . extensionId ) ;
46+ const timer : NodeJS . Timeout | undefined = this . timers . get ( provider . extensionId ) ;
4747 if ( timer ) {
4848 this . timers . delete ( provider . extensionId ) ;
4949 clearTimeout ( timer ) ;
0 commit comments