@ordojs/cli
Version:
Command-line interface for OrdoJS framework
24 lines • 630 B
TypeScript
/**
* @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