typescript 5.5.0-dev.20240327 → 5.5.0-dev.20240329

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.
@@ -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 {
@@ -6598,6 +6600,7 @@ declare namespace ts {
6598
6600
  ContainsSpread = 2097152,
6599
6601
  ObjectRestType = 4194304,
6600
6602
  InstantiationExpressionType = 8388608,
6603
+ SingleSignatureType = 134217728,
6601
6604
  }
6602
6605
  interface ObjectType extends Type {
6603
6606
  objectFlags: ObjectFlags;