Files
nuxt4/app/composables/useAuth.ts
T
2026-05-03 07:26:12 +00:00

6 lines
118 B
TypeScript

import type { AuthClient } from '~/types/auth'
export function useAuth(): AuthClient {
return useNuxtApp().$auth
}