UNPKG

@crestron/ch5-shell-utilities-cli

Version:
23 lines (22 loc) 664 B
import { Ch5BaseClassForCli } from "../Ch5BaseClassForCli"; import { ICh5Cli } from "../ICh5Cli"; export declare class Ch5ExportLibrariesCli extends Ch5BaseClassForCli implements ICh5Cli { showOutputMessages: boolean; private outputResponse; private finalOutputZipFile; constructor(showOutputMessages?: boolean); /** * Method for exporting libraries */ run(): Promise<any>; /** * Log Final Response Message */ logFinalResponses(): void; /** * Copy and Zip files * @param {*} inputNames * @param {*} copyAll */ copyAndZipFiles(inputNames: string[], copyAll: boolean): Promise<void>; }