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