@oazmi/build-tools
Version:
general deno build tool scripts which I practically use in all of my typescript repos
10 lines • 310 B
TypeScript
export function stat_sync(path: any): {
is_file: boolean;
is_directory: boolean;
is_symlink: boolean;
};
/** @param {string} path */
export function read_to_string_lossy(path: string): string;
/** @param {string} path */
export function read_dir(path: string): any;
//# sourceMappingURL=fs.d.ts.map