UNPKG

smc-hub

Version:

CoCalc: Backend webserver component

11 lines (10 loc) 249 B
import { PostgreSQL, QueryWhere } from "./types"; interface QueryOpts { db: PostgreSQL; select: string[]; table: string; where: QueryWhere; one: boolean; } export declare function query(opts: QueryOpts): Promise<any>; export {};