UNPKG

@proofkit/better-auth

Version:

FileMaker adapter for Better Auth

14 lines (13 loc) 548 B
import { CleanedWhere, AdapterDebugLogs } from 'better-auth/adapters'; import { FmOdataConfig } from './odata.js'; interface FileMakerAdapterConfig { debugLogs?: AdapterDebugLogs; usePlural?: boolean; odata: FmOdataConfig; } export type AdapterOptions = { config: FileMakerAdapterConfig; }; export declare function parseWhere(where?: CleanedWhere[]): string; export declare const FileMakerAdapter: (_config?: FileMakerAdapterConfig) => (options: import('better-auth').BetterAuthOptions) => import('better-auth').Adapter; export {};