mirror of
https://github.com/Litlyx/litlyx
synced 2025-12-10 07:48:37 +01:00
18 lines
235 B
TypeScript
18 lines
235 B
TypeScript
|
|
declare module '#auth-utils' {
|
|
|
|
interface User {
|
|
email: string,
|
|
name: string
|
|
}
|
|
|
|
interface UserSession {
|
|
v: string
|
|
}
|
|
|
|
interface SecureSessionData {
|
|
user_id: string
|
|
}
|
|
}
|
|
|
|
export { } |