UNPKG

@cocalc/server

Version:

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

13 lines (12 loc) 354 B
interface Options { socket: any; project_id: string; mesg: any; } export default function handleMessage({ socket, project_id, mesg, }: Options): Promise<void>; export declare function callProjectMessage({ socket, mesg, timeoutSeconds, }: { socket: any; mesg: any; timeoutSeconds?: number | undefined; }): Promise<any>; export {};