Skip to content

Commit 7b998fa

Browse files
committed
API baseline
1 parent d1dcc7a commit 7b998fa

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

tests/baselines/reference/api/typescript.d.ts

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1342,12 +1342,13 @@ declare namespace ts {
13421342
}
13431343
export interface WatchChangeRequest extends Request {
13441344
command: CommandTypes.WatchChange;
1345-
arguments: WatchChangeRequestArgs;
1345+
arguments: WatchChangeRequestArgs | readonly WatchChangeRequestArgs[];
13461346
}
13471347
export interface WatchChangeRequestArgs {
13481348
id: number;
1349-
path: string;
1350-
eventType: "create" | "delete" | "update";
1349+
created?: string[];
1350+
deleted?: string[];
1351+
updated?: string[];
13511352
}
13521353
/**
13531354
* Request to obtain the list of files that should be regenerated if target file is recompiled.
@@ -2032,6 +2033,7 @@ declare namespace ts {
20322033
readonly id: number;
20332034
readonly path: string;
20342035
readonly recursive: boolean;
2036+
readonly ignoreUpdate?: boolean;
20352037
}
20362038
export type CloseFileWatcherEventName = "closeFileWatcher";
20372039
export interface CloseFileWatcherEvent extends Event {

0 commit comments

Comments
 (0)