@aiot-toolkit/emulator
Version:
vela emulator tool.
9 lines (8 loc) • 667 B
TypeScript
/**
* @param mode Optional modifiers that specify the behavior of the copy operation. It is possible to create a mask consisting of the bitwise OR of two or more values (e.g. fs.constants.COPYFILE_EXCL | fs.constants.COPYFILE_FICLONE)
*/
export declare function copyDir(source: string, target: string, mode?: number): Promise<void>;
/**
* @param mode Optional modifiers that specify the behavior of the copy operation. It is possible to create a mask consisting of the bitwise OR of two or more values (e.g. fs.constants.COPYFILE_EXCL | fs.constants.COPYFILE_FICLONE)
*/
export declare function copyDirSync(source: string, target: string, mode?: number): void;