cal.pub0.org/packages/app-store/next-auth.d.ts

16 lines
414 B
TypeScript
Raw Normal View History

import NextAuth, { DefaultSession } from "next-auth";
declare module "next-auth" {
type DefaultSessionUser = NonNullable<DefaultSession["user"]>;
type CalendsoSessionUser = DefaultSessionUser & {
id: number;
username: string;
};
/**
* Returned by `useSession`, `getSession` and received as a prop on the `Provider` React Context
*/
interface Session {
user: CalendsoSessionUser;
}
}