UNPKG

@razen-core/zenweb

Version:

A minimalist TypeScript framework for building reactive web applications with no virtual DOM

15 lines 389 B
/** * Production Server * Uses Express if available, falls back to native HTTP */ import { ZenWebConfig } from './config.js'; export interface ServerOptions { port: number; root: string; config?: ZenWebConfig; } /** * Start production server */ export declare function startProductionServer(options: ServerOptions): Promise<void>; //# sourceMappingURL=prod-server.d.ts.map