UNPKG

@cocalc/database

Version:

CoCalc: code for working with our PostgreSQL database

5 lines (4 loc) 329 B
import { PostgreSQL } from "./types"; import { PublicPath } from "@cocalc/util/db-schema/public-paths"; export declare function unlist_all_public_paths(db: PostgreSQL, account_id: string, is_owner?: boolean): Promise<void>; export declare function get_all_public_paths(db: PostgreSQL, account_id: string): Promise<PublicPath[]>;