UNPKG

alapa

Version:

A cutting-edge web development framework designed to revolutionize the way developers build modern web applications.

16 lines (15 loc) 365 B
import { Router } from "../core/routes"; export interface ServerConfiguration { port?: number; host?: string; routes: Array<Router> | Router; apiRoutes: Array<Router> | Router; proxy?: boolean; compression?: boolean; https?: { enabled: boolean; keyPath: string; certPath: string; caPath: string; }; }