jovo-cli
Version:
jovo command line tool (beta)
14 lines (13 loc) • 348 B
TypeScript
import Command from '@oclif/command';
import { InputFlags } from 'jovo-cli-core';
export declare class Run extends Command {
static description: string;
static examples: string[];
static flags: InputFlags;
static args: {
name: string;
required: boolean;
default: string;
}[];
run(): Promise<void>;
}