mirror of
https://github.com/ManInDark/HabitTrove.git
synced 2026-01-20 22:24:28 +01:00
8 lines
134 B
TypeScript
8 lines
134 B
TypeScript
import 'next-auth'
|
|
import { SafeUser } from '@/lib/types'
|
|
|
|
declare module 'next-auth' {
|
|
interface Session {
|
|
user: SafeUser
|
|
}
|
|
} |