@amaabca/lexcmdcli
Version:
CLI Tool for interacting with AWS Lex API
16 lines (15 loc) • 569 B
TypeScript
import { Command, flags } from '@oclif/command';
export default class Build extends Command {
static description: string;
static examples: string[];
static flags: {
help: import("@oclif/parser/lib/flags").IBooleanFlag<void>;
verbose: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
botId: flags.IOptionFlag<string | undefined>;
alias: flags.IOptionFlag<string | undefined>;
locale: flags.IOptionFlag<string | undefined>;
};
static usage: string;
static args: never[];
run(): Promise<void>;
}