UNPKG

@cocalc/database

Version:

CoCalc: code for working with our PostgreSQL database

9 lines (8 loc) 223 B
import { PostgreSQL } from "./types"; interface DeletePatchesOpts { db: PostgreSQL; string_id: string; cb?: Function; } export declare function delete_patches(opts: DeletePatchesOpts): Promise<void>; export {};