File tree 2 files changed +7
-5
lines changed
tests/baselines/reference/api
2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -858,7 +858,7 @@ export const enum ModifierFlags {
858
858
Protected = 1 << 2 , // Property/Method
859
859
Readonly = 1 << 3 , // Property/Method
860
860
Override = 1 << 4 , // Override method.
861
-
861
+
862
862
// Syntactic-only modifiers
863
863
Export = 1 << 5 , // Declarations
864
864
Abstract = 1 << 6 , // Class/Method/ConstructSignature
@@ -3663,10 +3663,10 @@ export interface ImportClause extends NamedDeclaration {
3663
3663
export type AssertionKey = ImportAttributeName ;
3664
3664
3665
3665
/** @deprecated */
3666
- export type AssertEntry = ImportAttribute ;
3666
+ export interface AssertEntry extends ImportAttribute { }
3667
3667
3668
3668
/** @deprecated */
3669
- export type AssertClause = ImportAttributes ;
3669
+ export interface AssertClause extends ImportAttributes { }
3670
3670
3671
3671
export type ImportAttributeName = Identifier | StringLiteral ;
3672
3672
Original file line number Diff line number Diff line change @@ -6018,9 +6018,11 @@ declare namespace ts {
6018
6018
/** @deprecated */
6019
6019
type AssertionKey = ImportAttributeName;
6020
6020
/** @deprecated */
6021
- type AssertEntry = ImportAttribute;
6021
+ interface AssertEntry extends ImportAttribute {
6022
+ }
6022
6023
/** @deprecated */
6023
- type AssertClause = ImportAttributes;
6024
+ interface AssertClause extends ImportAttributes {
6025
+ }
6024
6026
type ImportAttributeName = Identifier | StringLiteral;
6025
6027
interface ImportAttribute extends Node {
6026
6028
readonly kind: SyntaxKind.ImportAttribute;
You can’t perform that action at this time.
0 commit comments