UNPKG

smc-hub

Version:

CoCalc: Backend webserver component

11 lines (10 loc) 255 B
import { Logger } from "./types"; import { PostgreSQL } from "../postgres/types"; export declare function init(opts: { database: PostgreSQL; share_path: string; logger?: Logger; }): Promise<{ http_server: any; express_router: any; }>;