UNPKG

telefunc

Version:

Remote functions. Instead of API.

8 lines (7 loc) 199 B
export { getExportList }; export type { ExportList }; type ExportList = { exportName: string; localName: string | null; }[]; declare function getExportList(src: string): Promise<ExportList>;