typescript 5.4.0-dev.20231120 → 5.4.0-dev.20231122
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/tsc.js +135 -77
- package/lib/tsserver.js +171 -91
- package/lib/typescript.d.ts +5 -3
- package/lib/typescript.js +170 -91
- package/lib/typingsInstaller.js +23 -23
- package/package.json +2 -2
package/lib/typescript.d.ts
CHANGED
|
@@ -6020,9 +6020,11 @@ declare namespace ts {
|
|
|
6020
6020
|
/** @deprecated */
|
|
6021
6021
|
type AssertionKey = ImportAttributeName;
|
|
6022
6022
|
/** @deprecated */
|
|
6023
|
-
|
|
6023
|
+
interface AssertEntry extends ImportAttribute {
|
|
6024
|
+
}
|
|
6024
6025
|
/** @deprecated */
|
|
6025
|
-
|
|
6026
|
+
interface AssertClause extends ImportAttributes {
|
|
6027
|
+
}
|
|
6026
6028
|
type ImportAttributeName = Identifier | StringLiteral;
|
|
6027
6029
|
interface ImportAttribute extends Node {
|
|
6028
6030
|
readonly kind: SyntaxKind.ImportAttribute;
|
|
@@ -10420,7 +10422,7 @@ declare namespace ts {
|
|
|
10420
10422
|
installPackage?(options: InstallPackageOptions): Promise<ApplyCodeActionCommandResult>;
|
|
10421
10423
|
writeFile?(fileName: string, content: string): void;
|
|
10422
10424
|
getParsedCommandLine?(fileName: string): ParsedCommandLine | undefined;
|
|
10423
|
-
jsDocParsingMode?: JSDocParsingMode;
|
|
10425
|
+
jsDocParsingMode?: JSDocParsingMode | undefined;
|
|
10424
10426
|
}
|
|
10425
10427
|
type WithMetadata<T> = T & {
|
|
10426
10428
|
metadata?: unknown;
|