Add .gitignore to exclude all node packages and lock files
This commit is contained in:
+9
@@ -0,0 +1,9 @@
|
||||
import fs from 'node:fs';
|
||||
export declare function copyDir({ src, dest, onSymlinkDetected, onProgress, copiedBytes, lastReportedProgress, }: {
|
||||
src: string;
|
||||
dest: string;
|
||||
onSymlinkDetected: (entry: fs.Dirent, dir: string) => void;
|
||||
onProgress: (bytes: number) => void;
|
||||
copiedBytes: number;
|
||||
lastReportedProgress: number;
|
||||
}): Promise<number>;
|
||||
Reference in New Issue
Block a user