UNPKG

alapa

Version:

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

10 lines (9 loc) 296 B
import http from "http"; import { Express } from "express"; export interface StartResponse { host?: string; port?: number; app: Express; server: http.Server<typeof http.IncomingMessage, typeof http.ServerResponse>; } export declare function startServer(): Promise<StartResponse>;