Files
clawbot/skills/remotion-prompt-video/node_modules/@remotion/bundler/dist/copy-dir.d.ts
T

10 lines
362 B
TypeScript

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>;