fix(node-swc/types): Add a missing field of ExportNamedDeclaration (#3822)

This commit is contained in:
Menci 2022-03-03 14:46:30 +08:00 committed by GitHub
parent f044a37150
commit bde7577098
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1515,6 +1515,8 @@ export interface ExportNamedDeclaration extends Node, HasSpan {
specifiers: ExportSpecifier[];
source?: StringLiteral;
typeOnly: boolean;
}
export interface ExportDefaultDeclaration extends Node, HasSpan {