@ordojs/cli
Version:
Command-line interface for OrdoJS framework
17 lines • 394 B
TypeScript
/**
* @fileoverview OrdoJS CLI - Dev command
*/
import { Command } from 'commander';
/**
* Register the dev command
*/
export declare function registerDevCommand(program: Command): void;
/**
* Dev command implementation
*/
export declare function devCommand(dir: string, options: {
port: string;
host: string;
hmr: boolean;
}): Promise<void>;
//# sourceMappingURL=dev.d.ts.map