UNPKG

balena-cli

Version:

The official balena Command Line Interface

17 lines (16 loc) 468 B
import { Command } from '@oclif/core'; export default class SSHKeyRmCmd extends Command { 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>; }