fix(types): replace any with proper type in better-auth auth

Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
This commit is contained in:
nxtkofi 2026-04-21 20:52:49 +02:00
parent da062bcc27
commit a1e653bbf7

View file

@ -1,3 +1,3 @@
import { createAuth } from '../auth';
export const auth = createAuth({} as any);
export const auth = createAuth({} as Parameters<typeof createAuth>[0]);