We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa0d37d commit d0aa726Copy full SHA for d0aa726
_packages/ast/src/nodes.ts
@@ -1992,11 +1992,16 @@ export type NamedExportBindings =
1992
export interface ImportClause extends NamedDeclaration {
1993
readonly kind: SyntaxKind.ImportClause;
1994
readonly parent: ImportDeclaration | JSDocImportTag;
1995
- readonly isTypeOnly: boolean;
+ readonly phaseModifier: ImportPhaseModifierSyntaxKind;
1996
readonly name?: Identifier; // Default binding
1997
readonly namedBindings?: NamedImportBindings;
1998
}
1999
2000
+export type ImportPhaseModifierSyntaxKind =
2001
+ | SyntaxKind.Unknown
2002
+ | SyntaxKind.TypeKeyword
2003
+ | SyntaxKind.DeferKeyword;
2004
+
2005
/** @deprecated */
2006
export type AssertionKey = ImportAttributeName;
2007
0 commit comments