File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -508,6 +508,9 @@ namespace ts {
508
508
echo ( s : string ) : void ;
509
509
quit ( exitCode ?: number ) : void ;
510
510
fileExists ( path : string ) : boolean ;
511
+ deleteFile ( path : string ) : boolean ;
512
+ getModifiedTime ( path : string ) : Date ;
513
+ setModifiedTime ( path : string , time : Date ) : void ;
511
514
directoryExists ( path : string ) : boolean ;
512
515
createDirectory ( path : string ) : void ;
513
516
resolvePath ( path : string ) : string ;
@@ -1135,6 +1138,9 @@ namespace ts {
1135
1138
} ,
1136
1139
resolvePath : ChakraHost . resolvePath ,
1137
1140
fileExists : ChakraHost . fileExists ,
1141
+ deleteFile : ChakraHost . deleteFile ,
1142
+ getModifiedTime : ChakraHost . getModifiedTime ,
1143
+ setModifiedTime : ChakraHost . setModifiedTime ,
1138
1144
directoryExists : ChakraHost . directoryExists ,
1139
1145
createDirectory : ChakraHost . createDirectory ,
1140
1146
getExecutingFilePath : ( ) => ChakraHost . executingFile ,
You can’t perform that action at this time.
0 commit comments