balena-cli
Version:
The official balena Command Line Interface
14 lines (13 loc) • 489 B
TypeScript
import { Command } from '@oclif/core';
export default class SSHKeyAddCmd extends Command {
static aliases: string[];
static deprecateAliases: boolean;
static description: string;
static examples: string[];
static args: {
name: import("@oclif/core/lib/interfaces").Arg<string, Record<string, unknown>>;
path: import("@oclif/core/lib/interfaces").Arg<string, Record<string, unknown>>;
};
static authenticated: boolean;
run(): Promise<void>;
}