UNPKG

smc-hub

Version:

CoCalc: Backend webserver component

10 lines (9 loc) 269 B
/// <reference types="node" /> import { Application } from "express"; interface Options { cert?: string; key?: string; app: Application; } export default function init({ cert, key, app }: Options): import("http").Server | import("https").Server; export {};