@crestron/ch5-shell-utilities-cli
Version:
CH5 Shell Utilities CLI for command scripts
27 lines (26 loc) • 759 B
TypeScript
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;
}