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