@typescript-deploys/pr-build 4.8.0-pr-48997-21 → 4.8.0-pr-48784-14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/tsc.js +1326 -734
- package/lib/tsserver.js +1290 -779
- package/lib/tsserverlibrary.d.ts +1 -1
- package/lib/tsserverlibrary.js +1290 -779
- package/lib/typescript.d.ts +1 -1
- package/lib/typescript.js +1285 -773
- package/lib/typescriptServices.d.ts +1 -1
- package/lib/typescriptServices.js +1285 -773
- package/lib/typingsInstaller.js +1280 -766
- package/package.json +1 -1
package/lib/tsserverlibrary.d.ts
CHANGED
|
@@ -4140,7 +4140,7 @@ declare namespace ts {
|
|
|
4140
4140
|
Changed = 1,
|
|
4141
4141
|
Deleted = 2
|
|
4142
4142
|
}
|
|
4143
|
-
export type FileWatcherCallback = (fileName: string, eventKind: FileWatcherEventKind) => void;
|
|
4143
|
+
export type FileWatcherCallback = (fileName: string, eventKind: FileWatcherEventKind, modifiedTime?: Date) => void;
|
|
4144
4144
|
export type DirectoryWatcherCallback = (fileName: string) => void;
|
|
4145
4145
|
export interface System {
|
|
4146
4146
|
args: string[];
|