UNPKG

@alwatr/node-fs

Version:

Enhanced file system operations in Node.js with asynchronous queue to prevent parallel writes.

12 lines 233 B
/** * Make empty file. * * @param path - file path * * @example * ```ts * await makeFile('./dir/file.txt'); * ``` */ export declare function makeEmptyFile(path: string): Promise<void>; //# sourceMappingURL=make-file.d.ts.map