UNPKG

@cocalc/server

Version:

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

11 lines (10 loc) 294 B
import { State } from "@cocalc/util/compute-states"; export interface Project { project_id: string; title: string; site_license: object; hidden?: boolean; last_edited: number; state?: State; } export default function getProjects(account_id: string): Promise<Project[]>;