UNPKG

better-auth

Version:

The most comprehensive authentication framework for TypeScript.

10 lines 359 B
import { BetterAuthOptions } from "@better-auth/core"; import { DBFieldAttribute } from "@better-auth/core/db"; //#region src/db/get-schema.d.ts declare function getSchema(config: BetterAuthOptions): Record<string, { fields: Record<string, DBFieldAttribute>; order: number; disableMigrations?: boolean | undefined; }>; //#endregion export { getSchema };