UNPKG

ordojs

Version:

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

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