UNPKG

balena-cli

Version:

The official balena Command Line Interface

14 lines (13 loc) 367 B
import { Command } from '@oclif/core'; export default class SSHKeyCmd extends Command { static description: string; static examples: string[]; static args: { id: import("@oclif/core/lib/interfaces").Arg<number, { max?: number; min?: number; }>; }; static authenticated: boolean; run(): Promise<void>; }