UNPKG

@cloud-cli/cli

Version:

CLI for the Cloud CLI project

12 lines (11 loc) 402 B
import { Settings } from '../configuration.js'; export declare class CommandLineInterface { protected settings: Settings; constructor(settings: Settings); run(args: string[]): Promise<unknown>; printOutput(output: any): void; showHelpAndExit(): Promise<void>; fetchCommands(): Promise<Record<string, string[]>>; private parseParamsFromCli; private readFileReferences; }