//#region ../@warlock.js/fs/src/remove.d.ts /** * Delete a single file. No error if the file doesn't exist. */ declare function unlinkAsync(path: string): Promise; declare function unlink(path: string): void; /** * Recursively delete a directory and its contents. No error if missing. */ declare function removeDirectoryAsync(path: string): Promise; declare function removeDirectory(path: string): void; //#endregion export { removeDirectory, removeDirectoryAsync, unlink, unlinkAsync }; //# sourceMappingURL=remove.d.mts.map