@sap/cli-core
Version:
Command-Line Interface (CLI) Core Module
11 lines (10 loc) • 347 B
TypeScript
export declare const init: () => Promise<void>;
export declare const executeCommand: (command?: string) => Promise<void>;
type Options = {
[option: string]: string;
};
type CommandObject = {
[command: string]: (options?: Options) => Promise<void>;
};
export declare const getCommands: (host?: string) => Promise<CommandObject>;
export {};