Files
antrean-anjungan/examples/nuxt3-websocket-client/node_modules/db0/dist/connectors/postgresql.d.ts
T
2025-09-18 19:01:22 +07:00

7 lines
221 B
TypeScript

import pg from "pg";
import type { Connector } from "db0";
export type ConnectorOptions = {
url: string;
} | pg.ClientConfig;
export default function postgresqlConnector(opts: ConnectorOptions): Connector<pg.Client>;