/** *
*

An official PostgreSQL adapter for Auth.js / NextAuth.js.

* * * *
* * ## Installation * * ```bash npm2yarn * npm install next-auth @auth/pg-adapter pg * ``` * * @module @auth/pg-adapter */ import type { Adapter } from "@auth/core/adapters"; import type { Pool } from "pg"; export declare function mapExpiresAt(account: any): any; export default function PostgresAdapter(client: Pool): Adapter; //# sourceMappingURL=index.d.ts.map