UNPKG

balena-cli

Version:

The official balena Command Line Interface

16 lines (15 loc) 531 B
import { Command } from '@oclif/core'; export default class FleetCmd extends Command { static description: string; static examples: string[]; static args: { fleet: import("@oclif/core/lib/interfaces").Arg<string, Record<string, unknown>>; }; static flags: { view: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>; json: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>; }; static authenticated: boolean; static primary: boolean; run(): Promise<void>; }