smc-hub
Version:
CoCalc: Backend webserver component
5 lines (4 loc) • 325 B
TypeScript
import { PostgreSQL } from "./types";
import { PublicPath } from "smc-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[]>;