UNPKG

@ably/cli

Version:

Ably CLI for Pub/Sub, Chat and Spaces

16 lines (15 loc) 512 B
import { Command } from "@oclif/core"; import CustomHelp from "../help.js"; 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>; getCustomHelp(): CustomHelp; }