balena-cli
Version:
The official balena Command Line Interface
12 lines (11 loc) • 383 B
TypeScript
import { Command } from '@oclif/core';
export default class LeaveCmd extends Command {
static description: string;
static examples: string[];
static args: {
deviceIpOrHostname: import("@oclif/core/lib/interfaces").Arg<string | undefined, Record<string, unknown>>;
};
static authenticated: boolean;
static primary: boolean;
run(): Promise<void>;
}