ordojs
Version:
A revolutionary web framework with compile-time optimizations and unified client-server development
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