UNPKG

@cocalc/server

Version:

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

7 lines (6 loc) 177 B
interface Options { account_id: string; project_id: string; } export default function isCollaborator({ account_id, project_id, }: Options): Promise<boolean>; export {};