UNPKG

ordojs

Version:

A revolutionary web framework with compile-time optimizations and unified client-server development

24 lines 630 B
/** * @fileoverview OrdoJS CLI - Infrastructure command */ import { Command } from 'commander'; /** * Register the infrastructure command */ export declare function registerInfrastructureCommand(program: Command): void; /** * Infrastructure command implementation */ export declare function infrastructureCommand(options: { type: string; platform: string; output: string; nodeVersion: string; port: number; multiStage: boolean; healthCheck: boolean; autoDeploy: boolean; monitoring: boolean; env: Record<string, string>; }): Promise<void>; //# sourceMappingURL=infrastructure.d.ts.map