UNPKG

typescript-transform-export-interop

Version:

TypeScript transform for exporting a module that can be easily imported both from TypeScript and from Node.js.

11 lines (10 loc) 247 B
declare const Utils: { exit(msg: any): void; parseRe(re: any): any; file: { exists(filePath: any): boolean; read(filePath: any): string; write(filePath: any, content: any): void; }; }; export default Utils;