Files
2023-11-25 18:12:47 -05:00

8 lines
199 B
TypeScript

export interface Exports {
exports: string[];
reexports: string[];
}
export declare function parse(source: string, name?: string): Exports;
export declare function init(): Promise<void>;