hana-cli
Version:
HANA Developer Command Line Interface
40 lines (39 loc) • 1.23 kB
TypeScript
/**
* Command handler function
* @param {object} argv - Command line arguments from yargs
* @returns {Promise<void>}
*/
export function handler(argv: object): Promise<void>;
/**
* Analyze column store statistics
* @param {object} prompts - Input prompts with schema, table, and limit
* @returns {Promise<Array>} - Array of column statistics
*/
export function getColumnStats(prompts: object): Promise<any[]>;
export const command: "columnStats [schema] [table]";
export const aliases: any[];
export const describe: string;
export function builder(yargs: any): any;
export namespace inputPrompts {
namespace table {
let description: string;
let type: string;
let required: boolean;
}
namespace schema {
let description_1: string;
export { description_1 as description };
let type_1: string;
export { type_1 as type };
let required_1: boolean;
export { required_1 as required };
}
namespace limit {
let description_2: string;
export { description_2 as description };
let type_2: string;
export { type_2 as type };
let required_2: boolean;
export { required_2 as required };
}
}