typescript 5.5.0-dev.20240419 → 5.5.0-dev.20240421

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.
@@ -4215,7 +4215,7 @@ declare namespace ts {
4215
4215
  getSourceFile(): SourceFile;
4216
4216
  getChildCount(sourceFile?: SourceFile): number;
4217
4217
  getChildAt(index: number, sourceFile?: SourceFile): Node;
4218
- getChildren(sourceFile?: SourceFile): Node[];
4218
+ getChildren(sourceFile?: SourceFile): readonly Node[];
4219
4219
  getStart(sourceFile?: SourceFile, includeJsDocComment?: boolean): number;
4220
4220
  getFullStart(): number;
4221
4221
  getEnd(): number;
@@ -6903,6 +6903,7 @@ declare namespace ts {
6903
6903
  inlineSourceMap?: boolean;
6904
6904
  inlineSources?: boolean;
6905
6905
  isolatedModules?: boolean;
6906
+ isolatedDeclarations?: boolean;
6906
6907
  jsx?: JsxEmit;
6907
6908
  /** @deprecated */
6908
6909
  keyofStringsOnly?: boolean;