mirror of
https://github.com/ArthurDanjou/website.git
synced 2026-01-14 12:14:42 +01:00
11 lines
149 B
TypeScript
11 lines
149 B
TypeScript
declare module '#auth-utils' {
|
|
interface UserSession {
|
|
user: {
|
|
email: string
|
|
username: string
|
|
picture: string
|
|
admin: boolean
|
|
}
|
|
}
|
|
}
|