Files
nuxt-frontend/h3.d.ts
2026-04-14 19:44:21 -05:00

10 lines
147 B
TypeScript

import type { AuthContext } from './server/types/auth'
declare module 'h3' {
interface H3EventContext {
auth?: AuthContext
}
}
export {}