Skip to content

Commit d337f69

Browse files
committed
Use string literal instead of variable
1 parent 4929209 commit d337f69

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/babel-generator/src/generators/modules.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export function ExportDefaultSpecifier(
4141

4242
export function ExportSpecifier(this: Printer, node: t.ExportSpecifier) {
4343
if (node.exportKind === "type") {
44-
this.word(node.exportKind);
44+
this.word("type");
4545
this.space();
4646
}
4747

0 commit comments

Comments
 (0)