Support Import Assertions for re-export statement (#12249)

This commit is contained in:
Sosuke Suzuki
2020-10-26 23:18:45 +09:00
committed by GitHub
parent f5bd9f2013
commit faaebfe91f
33 changed files with 763 additions and 18 deletions

View File

@@ -1364,6 +1364,7 @@ interface ExportNamedDeclaration <: ModuleDeclaration {
declaration: Declaration | null;
specifiers: [ ExportSpecifier ];
source: StringLiteral | null;
assertions?: [ ImportAttribute ];
}
```