UNPKG

balena-cli

Version:

The official balena Command Line Interface

19 lines (18 loc) 536 B
import { Command } from '@oclif/core'; export default class SSHKeyRmCmd extends Command { static aliases: string[]; static deprecateAliases: boolean; static description: string; static examples: string[]; static args: { id: import("@oclif/core/lib/interfaces").Arg<number, { max?: number; min?: number; }>; }; static flags: { yes: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>; }; static authenticated: boolean; run(): Promise<void>; }