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.
@@ -6020,9 +6020,11 @@ declare namespace ts {
6020
6020
  /** @deprecated */
6021
6021
  type AssertionKey = ImportAttributeName;
6022
6022
  /** @deprecated */
6023
- type AssertEntry = ImportAttribute;
6023
+ interface AssertEntry extends ImportAttribute {
6024
+ }
6024
6025
  /** @deprecated */
6025
- type AssertClause = ImportAttributes;
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;