bpms_site/.svn/pristine/a5/a5eb24653f12a276e6f32fd1861f29636af37722.svn-base
2025-11-02 16:38:49 +03:30

11 lines
321 B
Plaintext

/**
* Recursively delete directory contents
*/
export declare function recursiveDelete(
/** Directory to delete the contents of */
dir: string,
/** Exclude based on relative file path */
exclude?: RegExp,
/** Ensures that parameter dir exists, this is not passed recursively */
previousPath?: string): Promise<void>;