better-auth
Version:
The most comprehensive authentication framework for TypeScript.
11 lines (10 loc) • 359 B
text/typescript
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;
}>;
//#endregion
export { getSchema };
//# sourceMappingURL=get-schema.d.mts.map