20 lines
577 B
TypeScript
20 lines
577 B
TypeScript
import { LoginType } from "./components/tracking"
|
|
|
|
import type { DefaultJWT } from "next-auth/jwt"
|
|
|
|
import type { RefreshTokenError } from "./authError"
|
|
|
|
// Module augmentation
|
|
// https://authjs.dev/getting-started/typescript#popular-interfaces-to-augment
|
|
declare module "next-auth/jwt" {
|
|
/** Returned by the `jwt` callback and `auth`, when using JWT sessions */
|
|
interface JWT extends DefaultJWT, RefreshTokenError {
|
|
access_token: string
|
|
expires_at?: number
|
|
refresh_token: string
|
|
loginType: LoginType
|
|
mfa_scope: boolean
|
|
mfa_expires_at: number
|
|
}
|
|
}
|