@cocalc/hub
Version:
CoCalc: Backend webserver component
15 lines (14 loc) • 362 B
TypeScript
import { Router } from "express";
interface Options {
httpServer: any;
router: Router;
projectControl: any;
clients: {
[id: string]: any;
};
host: string;
port: number;
isPersonal: boolean;
}
export default function init({ httpServer, router, projectControl, clients, host, port, isPersonal, }: Options): void;
export {};