UNPKG

@cocalc/server

Version:

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

11 lines (10 loc) 305 B
import { State } from "@cocalc/util/compute-states"; export interface Project { project_id: string; title: string; quota: object; last_edited: number; state?: State; collaborators: string[]; } export default function getProjectsWithLicense(license_id: string): Promise<Project[]>;