UNPKG

@cocalc/database

Version:

CoCalc: code for working with our PostgreSQL database

6 lines (5 loc) 200 B
import { Client, Pool } from "pg"; import { Length } from "./cached"; export * from "./util"; export default function getPool(cacheLength?: Length): Pool; export declare function getClient(): Client;