UNPKG

@cocalc/server

Version:

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

11 lines (10 loc) 275 B
/// <reference types="node" /> interface Options { socket: any; project_id: string; uuid: string; blob: Buffer; ttlSeconds?: number; } export default function handleBlob({ socket, project_id, uuid, blob, ttlSeconds, }: Options): Promise<void>; export {};