balena-cli
Version:
The official balena Command Line Interface
17 lines (16 loc) • 743 B
TypeScript
import { Command } from '@oclif/core';
import type { BalenaSDK } from 'balena-sdk';
export default class DeviceMoveCmd extends Command {
static description: string;
static examples: string[];
static args: {
uuid: import("@oclif/core/lib/interfaces").Arg<string, Record<string, unknown>>;
};
static flags: {
fleet: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
};
static authenticated: boolean;
private getDevices;
run(): Promise<void>;
interactivelySelectApplication(balena: BalenaSDK, devices: Awaited<ReturnType<typeof this.getDevices>>): ReturnType<typeof import('../../utils/patterns').selectApplication>;
}