@fewer/cli
Version:
The CLI to scaffold and perform operations for Fewer.
16 lines (15 loc) • 441 B
TypeScript
import { Command, flags } from '@oclif/command';
export default class GenerateDatabase extends Command {
static description: string;
static examples: string[];
static flags: {
adapter: flags.IOptionFlag<string>;
help: import("@oclif/parser/lib/flags").IBooleanFlag<void>;
};
static args: {
name: string;
required: boolean;
description: string;
}[];
run(): Promise<void>;
}