hana-cli
Version:
HANA Developer Command Line Interface
16 lines (15 loc) • 452 B
TypeScript
/**
* Get BTP hierarchy data for UI
* @returns {Promise<object>}
*/
export function getBTPTargetUI(): Promise<object>;
/**
* Handler function for setting BTP target from UI
* @param {object} argv - Command line arguments
* @returns {Promise<void>}
*/
export function handler(argv: object): Promise<void>;
export const command: "btpTarget";
export const aliases: string[];
export const describe: string;
export function builder(yargs: any): any;