summaryrefslogtreecommitdiff
path: root/cli/tsc/dts/typescript.d.ts
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2024-05-08 13:54:56 -0400
committerGitHub <noreply@github.com>2024-05-08 13:54:56 -0400
commit525b3c8d746b8eb358ed6466cd4b68ebd6542392 (patch)
treeb68c7533939703d67e7e5f3ab44b9980287e4bf1 /cli/tsc/dts/typescript.d.ts
parent0e9b7f64f76381e48e20742c7d0682fd8e61f7d4 (diff)
fix: upgrade TypeScript from 5.4.3 to 5.4.5 (#23740)
https://github.com/denoland/TypeScript/pull/11
Diffstat (limited to 'cli/tsc/dts/typescript.d.ts')
-rw-r--r--cli/tsc/dts/typescript.d.ts8
1 files changed, 5 insertions, 3 deletions
diff --git a/cli/tsc/dts/typescript.d.ts b/cli/tsc/dts/typescript.d.ts
index 206b52407..3cf955e29 100644
--- a/cli/tsc/dts/typescript.d.ts
+++ b/cli/tsc/dts/typescript.d.ts
@@ -1510,12 +1510,13 @@ declare namespace ts {
}
interface WatchChangeRequest extends Request {
command: CommandTypes.WatchChange;
- arguments: WatchChangeRequestArgs;
+ arguments: WatchChangeRequestArgs | readonly WatchChangeRequestArgs[];
}
interface WatchChangeRequestArgs {
id: number;
- path: string;
- eventType: "create" | "delete" | "update";
+ created?: string[];
+ deleted?: string[];
+ updated?: string[];
}
/**
* Request to obtain the list of files that should be regenerated if target file is recompiled.
@@ -2452,6 +2453,7 @@ declare namespace ts {
readonly id: number;
readonly path: string;
readonly recursive: boolean;
+ readonly ignoreUpdate?: boolean;
}
type CloseFileWatcherEventName = "closeFileWatcher";
interface CloseFileWatcherEvent extends Event {