UNPKG

@crestron/ch5-shell-utilities-cli

Version:
27 lines (26 loc) 759 B
import { Ch5BaseClassForProject } from "../base-classes/Ch5BaseClassForProject"; import { ICh5CliNew } from "../ICh5Cli"; export declare class Ch5UpdateProjectCli extends Ch5BaseClassForProject implements ICh5CliNew { showOutputMessages: boolean; /** * Constructor */ constructor(showOutputMessages?: boolean); /** * Verify input parameters */ verifyInputParams(): Promise<void>; /** * Check if there are questions to be prompted to the integrator */ checkPromptQuestions(): Promise<void>; /** * Implement this component's main purpose */ processRequest(): Promise<void>; /** * Do not move this method to base class * @returns */ getCLIExecutionPath(): any; }