bknd
Version:
Lightweight Firebase/Supabase alternative built to run anywhere — incl. Next.js, React Router, Astro, Cloudflare, Bun, Node, AWS Lambda & more.
9 lines (8 loc) • 423 B
TypeScript
import { PostgresConnection } from "./PostgresConnection";
import { type PostgresJSDialectConfig } from "kysely-postgres-js";
export declare class PostgresJsConnection extends PostgresConnection<PostgresJSDialectConfig["postgres"]> {
name: string;
constructor(config: PostgresJSDialectConfig);
close(): Promise<void>;
}
export declare function postgresJs(config: PostgresJSDialectConfig): PostgresJsConnection;