UNPKG

smc-hub

Version:

CoCalc: Backend webserver component

8 lines (7 loc) 257 B
import { Response } from "express"; import { SiteSettingsKeys } from "smc-util/db-schema/site-defaults"; interface Custom { configuration: Record<SiteSettingsKeys, string>; } export declare function send(res: Response, custom: Custom): void; export {};