File tree Expand file tree Collapse file tree
tests/baselines/reference/api Expand file tree Collapse file tree Original file line number Diff line number Diff 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 {
You can’t perform that action at this time.
0 commit comments