mirror of https://github.com/lukechilds/docs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
398 B
15 lines
398 B
/**
|
|
* Nodejs cp -R
|
|
*/
|
|
declare module "cpr" {
|
|
function cpr (from: string, to: string, options?: cpr.CprOptions, callback?: (err: any, files: string[]) => void): void;
|
|
namespace cpr {
|
|
interface CprOptions {
|
|
deleteFirst?: boolean;
|
|
overwrite?: boolean;
|
|
confirm?: boolean;
|
|
filter?: RegExp | Function;
|
|
}
|
|
}
|
|
export = cpr;
|
|
}
|
|
|