hana-cli
Version:
HANA Developer Command Line Interface
33 lines (32 loc) • 944 B
TypeScript
/**
* Command handler function
* @param {object} argv - Command line arguments from yargs
* @returns {Promise<void>}
*/
export function handler(argv: object): Promise<void>;
/**
* View and filter audit trail entries
* @param {object} prompts - Input prompts
* @returns {Promise<void>}
*/
export function viewAuditLog(prompts: object): Promise<void>;
export const command: "auditLog";
export const aliases: string[];
export const describe: string;
export function builder(yargs: any): any;
export const auditLogBuilderOptions: object;
export namespace inputPrompts {
namespace limit {
let description: string;
let type: string;
let required: boolean;
}
namespace days {
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 };
}
}