UNPKG

@cloud-cli/cli

Version:

CLI for the Cloud CLI project

10 lines (9 loc) 334 B
import { Settings } from './configuration.js'; import type { CommandTree, CommandsMap } from './types.js'; export declare class CloudCommands { readonly map: CommandsMap; private initializers; constructor(tree: CommandTree); initialize(): Promise<void>; static load(settings?: Settings): Promise<CloudCommands>; }