This commit is contained in:
Bereket Engida
2025-12-20 07:38:46 -08:00
parent 4e49240184
commit 444d1127fc

View File

@@ -25,7 +25,7 @@ import { createBetterAuth } from "./base";
* });
*/
export const betterAuth = <Options extends BetterAuthOptions>(
options: Options,
options: Options & Record<never, never>,
): Auth<Options> => {
return createBetterAuth(options, init);
};