UNPKG

@netlify/content-engine

Version:
11 lines 376 B
import http from "http"; import https from "https"; import { IProgram } from "../commands/types"; import type { Express } from "express"; export type Listener = http.Server | https.Server; interface IServer { listener: Listener; } export declare function startServer(program: IProgram, app: Express): Promise<IServer>; export {}; //# sourceMappingURL=start-server.d.ts.map