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