UNPKG

308 BTypeScriptView Raw
1export declare function writeFile(filepath: string, content: string): Promise<void>;
2export declare function readFile(filepath: string): Promise<string>;
3export declare function unlinkFile(filePath: string, cb?: (err?: Error) => any): void;
4export declare function mkdirp(filePath: string): Promise<string>;