David Gamero 9860cfe0c2
release v1.5 (#162)
Co-authored-by: David Gamero <davidgamero@microsoft.com>
2021-12-09 16:44:30 -05:00

10 lines
197 B
TypeScript
Executable File

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