mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-22 08:26:35 +08:00
11 lines
392 B
TypeScript
11 lines
392 B
TypeScript
// Type definitions for cpy 5.0
|
|
// Project: https://github.com/sindresorhus/cpy#readme
|
|
// Definitions by: Mohamed Hegazy <https://github.com/mhegazy>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
export = cpy;
|
|
declare function cpy(
|
|
src: string | string[],
|
|
dest: string,
|
|
opts?: { cwd?: string, parents?: boolean, rename?(s: string): string }): Promise<void>;
|