added frontend + securing beta server invites
This commit is contained in:
11
web/types/next-auth.d.ts
vendored
Normal file
11
web/types/next-auth.d.ts
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
import NextAuth, { DefaultSession } from "next-auth"
|
||||
|
||||
declare module "next-auth" {
|
||||
interface Session {
|
||||
accessToken?: string
|
||||
user: {
|
||||
/** The user's postal address. */
|
||||
address: string
|
||||
} & DefaultSession["user"]
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user