UNPKG

packdir-cli

Version:
16 lines (15 loc) 373 B
import { Command } from '@oclif/core'; export default class Open extends Command { static description: string; static examples: string[]; static args: { name: string; required: boolean; }[]; /** * Get the start command on different OS. * @returns Start command */ getCommandLine(): string; run(): Promise<void>; }