@@ -5399,9 +5399,9 @@ declare namespace ts {
53995399 /** If provided, called with Diagnostic message that informs about change in watch status */
54005400 onWatchStatusChange?(diagnostic: Diagnostic, newLine: string, options: CompilerOptions, errorCount?: number): void;
54015401 /** Used to watch changes in source files, missing files needed to update the program or config file */
5402- watchFile(path: string, callback: FileWatcherCallback, pollingInterval?: number, options?: CompilerOptions ): FileWatcher;
5402+ watchFile(path: string, callback: FileWatcherCallback, pollingInterval?: number, options?: WatchOptions ): FileWatcher;
54035403 /** Used to watch resolved module's failed lookup locations, config file specs, type roots where auto type reference directives are added */
5404- watchDirectory(path: string, callback: DirectoryWatcherCallback, recursive?: boolean, options?: CompilerOptions ): FileWatcher;
5404+ watchDirectory(path: string, callback: DirectoryWatcherCallback, recursive?: boolean, options?: WatchOptions ): FileWatcher;
54055405 /** If provided, will be used to set delayed compilation, so that multiple changes in short span are compiled together */
54065406 setTimeout?(callback: (...args: any[]) => void, ms: number, ...args: any[]): any;
54075407 /** If provided, will be used to reset existing delayed compilation */
0 commit comments