mirror of
https://github.com/ArthurDanjou/arthome.git
synced 2026-01-14 20:19:26 +01:00
15 lines
181 B
TypeScript
15 lines
181 B
TypeScript
// auth.d.ts
|
|
declare module '#auth-utils' {
|
|
interface User {
|
|
email: string
|
|
name: string
|
|
}
|
|
|
|
interface UserSession {
|
|
email: string
|
|
name: string
|
|
}
|
|
}
|
|
|
|
export {}
|