@fewer/cli
Version:
The CLI to scaffold and perform operations for Fewer.
10 lines (9 loc) • 325 B
TypeScript
import { Command } from '@oclif/command';
export default class GenerateSchema extends Command {
static description: string;
static flags: {
offline: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
help: import("@oclif/parser/lib/flags").IBooleanFlag<void>;
};
run(): Promise<void>;
}