UNPKG

@nlabs/lex

Version:
7 lines (6 loc) 264 B
export interface CopyOptions { readonly cliName?: string; readonly quiet?: boolean; } export type CopyCallback = (status: number) => void; export declare const copy: (from: string, to: string, cmd: CopyOptions, callback?: CopyCallback) => Promise<number>;