UNPKG

@stryke/fs

Version:

A package containing various file system utilities that expand the functionality of NodeJs's built-in `fs` module.

16 lines 464 B
//#region src/remove-file.d.ts /** * Remove the given content to the given file path * * @param filePath - The file path to remove to */ declare const removeFileSync: (filePath: string) => void; /** * Remove the given content to the given file path * * @param filePath - The file path to read to */ declare const removeFile: (filePath: string) => Promise<void>; //#endregion export { removeFile, removeFileSync }; //# sourceMappingURL=remove-file.d.cts.map