File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -508,6 +508,9 @@ namespace ts {
508508 echo ( s : string ) : void ;
509509 quit ( exitCode ?: number ) : void ;
510510 fileExists ( path : string ) : boolean ;
511+ deleteFile ( path : string ) : boolean ;
512+ getModifiedTime ( path : string ) : Date ;
513+ setModifiedTime ( path : string , time : Date ) : void ;
511514 directoryExists ( path : string ) : boolean ;
512515 createDirectory ( path : string ) : void ;
513516 resolvePath ( path : string ) : string ;
@@ -1135,6 +1138,9 @@ namespace ts {
11351138 } ,
11361139 resolvePath : ChakraHost . resolvePath ,
11371140 fileExists : ChakraHost . fileExists ,
1141+ deleteFile : ChakraHost . deleteFile ,
1142+ getModifiedTime : ChakraHost . getModifiedTime ,
1143+ setModifiedTime : ChakraHost . setModifiedTime ,
11381144 directoryExists : ChakraHost . directoryExists ,
11391145 createDirectory : ChakraHost . createDirectory ,
11401146 getExecutingFilePath : ( ) => ChakraHost . executingFile ,
You can’t perform that action at this time.
0 commit comments