You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

5 lines
322 B

/** A basic function that copies a single file to another file location. */
export declare function copyFilePathToPathAsync(src: string, dest: string): Promise<void>;
/** Remove a single file (not directory). Returns `true` if a file was actually deleted. */
export declare function removeFile(filePath: string): boolean;