File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
tests/baselines/reference/api Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -1342,12 +1342,13 @@ declare namespace ts {
1342
1342
}
1343
1343
export interface WatchChangeRequest extends Request {
1344
1344
command: CommandTypes.WatchChange;
1345
- arguments: WatchChangeRequestArgs;
1345
+ arguments: WatchChangeRequestArgs | readonly WatchChangeRequestArgs[] ;
1346
1346
}
1347
1347
export interface WatchChangeRequestArgs {
1348
1348
id: number;
1349
- path: string;
1350
- eventType: "create" | "delete" | "update";
1349
+ created?: string[];
1350
+ deleted?: string[];
1351
+ updated?: string[];
1351
1352
}
1352
1353
/**
1353
1354
* Request to obtain the list of files that should be regenerated if target file is recompiled.
@@ -2032,6 +2033,7 @@ declare namespace ts {
2032
2033
readonly id: number;
2033
2034
readonly path: string;
2034
2035
readonly recursive: boolean;
2036
+ readonly ignoreUpdate?: boolean;
2035
2037
}
2036
2038
export type CloseFileWatcherEventName = "closeFileWatcher";
2037
2039
export interface CloseFileWatcherEvent extends Event {
You can’t perform that action at this time.
0 commit comments