fix
This commit is contained in:
parent
d915f7eb77
commit
996778bf72
|
|
@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue