fs-nextra
Version:
Node.js fs next-gen extra (nextra) methods.
9 lines (8 loc) • 330 B
TypeScript
/**
* @function copyFileAtomic
* @memberof fsn/nextra
* @param source The path to the file you want to copy
* @param destination The path to the file destination
* @param options The write options or the encoding string.
*/
export declare function copyFileAtomic(source: string, destination: string): Promise<void>;