netlify-cli
Version:
Netlify command line tool
10 lines • 374 B
TypeScript
export declare const fileExistsAsync: (filePath: string) => Promise<boolean>;
/**
* Checks if the provided filePath is a file
*/
export declare const isFileAsync: (filePath: string) => Promise<boolean>;
/**
* Checks if the provided filePath is a directory
*/
export declare const isDirectoryAsync: (filePath: string) => Promise<boolean>;
//# sourceMappingURL=fs.d.ts.map