mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-24 05:06:02 +08:00
18 lines
669 B
TypeScript
18 lines
669 B
TypeScript
// Type definitions for ncp v0.5.1
|
|
// Project: https://github.com/AvianFlu/ncp
|
|
// Definitions by: Bart van der Schoor <https://github.com/bartvds/>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
/// <reference types="node" />
|
|
|
|
export function ncp(source: string, destination: string, callback: (err: Error) => void): void;
|
|
export function ncp(source: string, destination: string, options: Options, callback: (err: Error) => void): void;
|
|
|
|
interface Options {
|
|
filter?: RegExp;
|
|
transform?: (read: NodeJS.ReadableStream, write: NodeJS.WritableStream) => void;
|
|
clobber?: boolean;
|
|
stopOnErr?: boolean;
|
|
errs?: NodeJS.WritableStream;
|
|
}
|