This commit is contained in:
Rizky 2024-07-18 16:35:25 +07:00
parent d915f7eb77
commit 996778bf72
1 changed files with 10 additions and 0 deletions

View File

@ -123,6 +123,16 @@ export const parseTypeDef = async (path: string) => {
val: s.orig.value, val: s.orig.value,
}); });
exported = true; exported = true;
} else if (
s.type === "ExportNamespaceSpecifier" &&
s.name
) {
exports[t.id.value].push({
kind: "type",
type: "named",
val: s.name.value,
});
exported = true;
} }
} }
} }