UNPKG

smc-hub

Version:

CoCalc: Backend webserver component

13 lines (12 loc) 294 B
import { Client } from "pg"; interface Opts { client: Client; query: string; params: string[]; pg_params: { [key: string]: string; }; cb: (err?: any, result?: any) => void; } export declare function do_query_with_pg_params(opts: Opts): Promise<void>; export {};