Files
var-monorepo/apps/dispatch-server/.d.ts
2025-03-14 00:18:06 -07:00

9 lines
128 B
TypeScript

declare module "next-auth/jwt" {
interface JWT {
uid: string;
firstname: string;
lastname: string;
email: string;
}
}