UNPKG

jovo-cli

Version:
16 lines (15 loc) 422 B
import { Command, flags } from '@oclif/command'; export declare class Convert extends Command { static description: string; static examples: string[]; static flags: { from: flags.IOptionFlag<string | undefined>; to: flags.IOptionFlag<string | undefined>; }; static args: { name: string; options: string[]; required: boolean; }[]; run(): Promise<void>; }