UNPKG

@cocalc/server

Version:

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

11 lines (10 loc) 374 B
import { BaseProject, CopyOptions, ProjectStatus, ProjectState } from "./base"; declare class Project extends BaseProject { state(): Promise<ProjectState>; status(): Promise<ProjectStatus>; start(): Promise<void>; stop(): Promise<void>; copyPath(opts: CopyOptions): Promise<string>; } export default function get(project_id: string): Project; export {};