balena-cli
Version:
The official balena Command Line Interface
13 lines (12 loc) • 427 B
TypeScript
import { Command } from '@oclif/core';
export default class DeviceTypeListCmd extends Command {
static aliases: string[];
static deprecateAliases: boolean;
static description: string;
static examples: string[];
static flags: {
json: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
all: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
};
run(): Promise<void>;
}