/** *
*

An official Azure Table Storage adapter for Auth.js / NextAuth.js.

* * * *
* * ## Installation * * ```bash npm2yarn * npm install next-auth @auth/azure-tables-adapter * ``` * * @module @auth/azure-tables-adapter */ import type { Adapter } from "@auth/core/adapters"; import { GetTableEntityResponse, TableClient, TableEntityResult } from "@azure/data-tables"; export declare const keys: { user: string; userByEmail: string; account: string; accountByUserId: string; session: string; sessionByUserId: string; verificationToken: string; }; export declare function withoutKeys(entity: GetTableEntityResponse>): T; export declare const TableStorageAdapter: (client: TableClient) => Adapter; //# sourceMappingURL=index.d.ts.map