UNPKG

@ordojs/cli

Version:

Command-line interface for OrdoJS framework

22 lines 525 B
/** * @fileoverview OrdoJS CLI - Deploy command */ import { Command } from 'commander'; /** * Register the deploy command */ export declare function registerDeployCommand(program: Command): void; /** * Deploy command implementation */ export declare function deployCommand(options: { adapter: string; dir: string; config?: string; domain?: string; env: Record<string, string>; static: boolean; server: boolean; production: boolean; }): Promise<void>; //# sourceMappingURL=deploy.d.ts.map