UNPKG

balena-cli

Version:

The official balena Command Line Interface

14 lines (13 loc) 687 B
import type { Command } from '@oclif/core'; import { Help } from '@oclif/core'; import type { ResolvableReturnType } from 'balena-sdk/typings/utils'; export default class BalenaHelp extends Help { private formatCommandsTitle; showCommandHelp(command: Command.Loadable): Promise<void>; showHelp(argv: string[]): Promise<void>; getCustomRootHelp(showAllCommands: boolean): string; protected formatGlobalOpts(opts: string[][]): string; protected formatCommands(commands: Array<Command.Loadable | ResolvableReturnType<Command.Loadable['load']>>): string; protected formatDescription(desc?: string): string; readonly manuallySortedPrimaryCommands: string[]; }