UNPKG

@cocalc/server

Version:

CoCalc server functionality: functions used by either the hub and the next.js server

8 lines (7 loc) 210 B
interface Options { project_id: string; mesg: any; sendResponse: (any: any) => void; } export default function handleSyncdoc({ project_id, mesg, sendResponse, }: Options): Promise<void>; export {};