UNPKG

@fewer/cli

Version:

The CLI to scaffold and perform operations for Fewer.

15 lines (14 loc) 624 B
import { Command, flags } from '@oclif/command'; export default class Migrate extends Command { static description: string; static examples: string[]; static flags: { version: flags.IOptionFlag<string | undefined>; rollback: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>; redo: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>; steps: import("@oclif/parser/lib/flags").IOptionFlag<number | undefined>; direction: flags.IOptionFlag<string | undefined>; help: import("@oclif/parser/lib/flags").IBooleanFlag<void>; }; run(): Promise<void>; }