UNPKG

smc-hub

Version:

CoCalc: Backend webserver component

6 lines (5 loc) 524 B
import { PostgreSQL } from "./types"; export declare function project_has_network_access(db: PostgreSQL, project_id: string): Promise<boolean>; export declare function project_datastore_set(db: PostgreSQL, account_id: string, project_id: string, config: any): Promise<void>; export declare function project_datastore_del(db: PostgreSQL, account_id: string, project_id: string, name: string): Promise<void>; export declare function project_datastore_get(db: PostgreSQL, account_id: string, project_id: string): Promise<any>;