Skip to content

Commit

Permalink
fix(ast-spec): correct misnamed ExportNamedDeclaration AST type (#5913)
Browse files Browse the repository at this point in the history
  • Loading branch information
bradzacher committed Nov 2, 2022
1 parent 2089e5a commit e88f4fa
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -46,7 +46,7 @@ export interface ExportNamedDeclarationWithoutSourceWithMultiple
extends ExportNamedDeclarationBase {
// this will always be empty array
assertions: ImportAttribute[];
declaration: NamedExportDeclarations;
declaration: null;
source: null;
specifiers: ExportSpecifier[];
}
Expand All @@ -55,7 +55,7 @@ export interface ExportNamedDeclarationWithoutSourceWithSingle
extends ExportNamedDeclarationBase {
// this will always be empty array
assertions: ImportAttribute[];
declaration: null;
declaration: NamedExportDeclarations;
source: null;
// this will always be empty array
specifiers: ExportSpecifier[];
Expand Down

0 comments on commit e88f4fa

Please sign in to comment.