jovo-cli
Version:
jovo command line tool (beta)
16 lines (15 loc) • 422 B
TypeScript
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>;
}