better-auth
Version:
The most comprehensive authentication framework for TypeScript.
13 lines (11 loc) • 448 B
text/typescript
import { Auth } from "../types/auth.mjs";
import "../types/index.mjs";
import { BetterAuthOptions } from "@better-auth/core";
//#region src/auth/minimal.d.ts
/**
* Better Auth initializer for minimal mode (without Kysely)
*/
declare const betterAuth: <Options extends BetterAuthOptions>(options: Options & Record<never, never>) => Auth<Options>;
//#endregion
export { type BetterAuthOptions, betterAuth };
//# sourceMappingURL=minimal.d.mts.map