typescript 5.5.0-dev.20240419 → 5.5.0-dev.20240420
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.
- package/lib/lib.dom.asynciterable.d.ts +5 -0
- package/lib/lib.dom.d.ts +211 -33
- package/lib/lib.dom.iterable.d.ts +8 -0
- package/lib/lib.esnext.d.ts +1 -0
- package/lib/lib.esnext.string.d.ts +29 -0
- package/lib/lib.webworker.asynciterable.d.ts +5 -0
- package/lib/lib.webworker.d.ts +20 -6
- package/lib/lib.webworker.iterable.d.ts +5 -0
- package/lib/tsc.js +1964 -143
- package/lib/typescript.d.ts +2 -1
- package/lib/typescript.js +2030 -160
- package/package.json +3 -3
package/lib/typescript.d.ts
CHANGED
|
@@ -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;
|