packdir-cli
Version:
Packdir CLI
16 lines (15 loc) • 373 B
TypeScript
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>;
}