UNPKG

rynex

Version:

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

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