hana-cli
Version:
HANA Developer Command Line Interface
24 lines (23 loc) • 681 B
TypeScript
/**
* Command handler function
* @param {object} argv - Command line arguments from yargs
* @returns {Promise<void>}
*/
export function handler(argv: object): Promise<void>;
/**
* Comprehensive database health assessment
* @param {object} prompts - Input prompts with check types
* @returns {Promise<void>}
*/
export function performHealthCheck(prompts: object): Promise<void>;
export const command: "healthCheck";
export const aliases: string[];
export const describe: string;
export function builder(yargs: any): any;
export namespace inputPrompts {
namespace checks {
let description: string;
let type: string;
let required: boolean;
}
}