@excute/cli
Version:
Execute JSX on anywhere
14 lines (13 loc) • 348 B
TypeScript
import { Command } from "@oclif/core";
export default class RunCommand extends Command {
static description: string;
static examples: string[];
static flags: {};
static args: {
name: string;
description: string;
required: boolean;
}[];
run(): Promise<void>;
catch(error: Error): Promise<void>;
}