balena-cli
Version:
The official balena Command Line Interface
16 lines (15 loc) • 435 B
TypeScript
import { Command } from '@oclif/core';
export default class SSHKeyCmd 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 authenticated: boolean;
run(): Promise<void>;
}