UNPKG

balena-cli

Version:

The official balena Command Line Interface

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