@ably/cli
Version:
Ably CLI for Pub/Sub, Chat and Spaces
14 lines (13 loc) • 442 B
TypeScript
import { Command } from '@oclif/core';
export default class HelpCommand extends Command {
static description: string;
static args: {
commands: import("@oclif/core/interfaces").Arg<string | undefined, Record<string, unknown>>;
};
static strict: boolean;
static flags: {
'web-cli-help': import("@oclif/core/interfaces").BooleanFlag<boolean>;
};
static examples: string[];
run(): Promise<void>;
}