balena-cli
Version:
The official balena Command Line Interface
11 lines (10 loc) • 336 B
TypeScript
import { Command } from '@oclif/core';
export default class DeviceTypeListCmd extends Command {
static enableJsonFlag: boolean;
static description: string;
static examples: string[];
static flags: {
all: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
};
run(): Promise<string | undefined>;
}