UNPKG

@cocalc/server

Version:

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

10 lines (9 loc) 259 B
interface Params { email: string; password: string; firstName: string; lastName: string; account_id: string; } export default function createAccount({ email, password, firstName, lastName, account_id, }: Params): Promise<void>; export {};