mirror of
https://github.com/Dokploy/dokploy.git
synced 2026-06-19 22:25:22 +02:00
refactor(auth): enhance type definitions for auth object to improve type safety and clarity
This commit is contained in:
@@ -271,7 +271,11 @@ const { handler, api } = betterAuth({
|
||||
],
|
||||
});
|
||||
|
||||
export const auth = {
|
||||
export const auth: {
|
||||
handler: typeof handler;
|
||||
createApiKey: typeof api.createApiKey;
|
||||
api: typeof api;
|
||||
} = {
|
||||
handler: handler,
|
||||
createApiKey: api.createApiKey,
|
||||
api: api,
|
||||
|
||||
Reference in New Issue
Block a user