UNPKG

@cocalc/server

Version:

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

11 lines (10 loc) 305 B
interface Options { account_id: string; title?: string; description?: string; image?: string; license?: string; public_path_id?: string; } export default function createProject({ account_id, title, description, image, license, public_path_id, }: Options): Promise<any>; export {};