10 lines
147 B
TypeScript
10 lines
147 B
TypeScript
import type { AuthContext } from './server/types/auth'
|
|
|
|
declare module 'h3' {
|
|
interface H3EventContext {
|
|
auth?: AuthContext
|
|
}
|
|
}
|
|
|
|
export {}
|