mirror of
https://github.com/prowler-cloud/prowler.git
synced 2026-07-22 20:11:53 +00:00
16 lines
303 B
TypeScript
16 lines
303 B
TypeScript
import { DefaultSession } from "next-auth";
|
|
|
|
declare module "next-auth" {
|
|
interface Session {
|
|
user: {
|
|
id: string;
|
|
tenantId: string;
|
|
firstName: string;
|
|
companyName: string;
|
|
email: string;
|
|
role: string;
|
|
image?: string;
|
|
} & DefaultSession["user"];
|
|
}
|
|
}
|