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