iwa-cli
Version:
An ImmutableWebApp CLI using oclif and cosmiconfig
19 lines (18 loc) • 648 B
TypeScript
import { Command, flags as flagTypes } from '@oclif/command';
declare class GenerateCommand extends Command {
static aliases: string[];
static description: string;
static flags: {
env: flagTypes.IOptionFlag<string>;
config: flagTypes.IOptionFlag<string | undefined>;
verbose: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
version: import("@oclif/parser/lib/flags").IBooleanFlag<void>;
help: import("@oclif/parser/lib/flags").IBooleanFlag<void>;
};
static args: {
name: string;
}[];
getData(): Promise<any>;
run(): Promise<void>;
}
export = GenerateCommand;