UNPKG

523 BTypeScriptView Raw
1import BaseCommand from '../base-command';
2export declare function printFiles(command: BaseCommand, files: string[]): void;
3export declare function copyFiles(command: BaseCommand, sourceDirectory: string, outPutDirectory: string, vars: any, silent?: boolean): Promise<string[]>;
4export declare function ensureFolderExists(path: string, empty?: boolean): void;
5export declare function ensureSymlinked(target: string, sourcePath: string): void;
6export declare function toParams(obj: Record<string, string | number>): string;