@digitaloptgroup/plugin-install-start
Version:
A plugin that installs the start plugin
11 lines (10 loc) • 341 B
TypeScript
import { Command, flags } from "@oclif/command";
export default class Dev extends Command {
static description: string;
static flags: {
port: import("@oclif/parser/lib/flags").IOptionFlag<number | undefined>;
script: flags.IOptionFlag<string | undefined>;
};
static args: never[];
run(): Promise<void>;
}