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