@cocalc/hub
Version:
CoCalc: Backend webserver component
11 lines (10 loc) • 300 B
TypeScript
/// <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 {};