hana-cli
Version:
HANA Developer Command Line Interface
17 lines (16 loc) • 560 B
TypeScript
/**
* Command handler function
* @param {object} argv - Command line arguments from yargs
* @returns {Promise<void>}
*/
export function handler(argv: object): Promise<void>;
/**
* Get list of database roles
* @param {object} prompts - Input prompts with schema, role pattern, and limit
* @returns {Promise<Array>} - Array of role objects
*/
export function getRoles(prompts: object): Promise<any[]>;
export const command: "roles [schema] [role]";
export const aliases: string[];
export const describe: string;
export function builder(yargs: any): any;