UNPKG

406 BTypeScriptView Raw
1export declare function normalizePath(path: string): string;
2export declare function directoryExists(directoryPath: string): boolean;
3export declare function ensureDirectoriesExist(directoryPath: string): void;
4export declare function writeFile(fileName: string, data: string, writeByteOrderMark: boolean, onError?: (message: string) => void): void;
5export declare function readFile(file: string): string;