UNPKG

@cocalc/hub

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