UNPKG

@cocalc/hub

Version:
15 lines (14 loc) 362 B
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 {};