/****************************************************************** MIT License http://www.opensource.org/licenses/mit-license.php Author Mora (https://github.com/qiu8310) *******************************************************************/ /// import * as fs from 'fs'; export declare const stat: (filepath: string) => Promise; export declare const readdir: (dirpath: string) => Promise; export declare const readFile: (filepath: string) => Promise; export declare const exists: (filepath: string) => Promise;