UNPKG

@cocalc/server

Version:

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

8 lines (7 loc) 203 B
interface Options { account_id: string; project_id: string; group?: string; } export default function addUserToProject({ account_id, project_id, group, }: Options): Promise<void>; export {};