mirror of
https://github.com/TheRealOwenRees/echecsfrance.git
synced 2026-07-23 12:36:57 +00:00
18 lines
246 B
TypeScript
18 lines
246 B
TypeScript
import NextAuth from "next-auth";
|
|
|
|
declare module "next-auth" {
|
|
interface User {
|
|
locale?: string;
|
|
}
|
|
|
|
interface Session {
|
|
user: User;
|
|
}
|
|
}
|
|
|
|
declare module "@auth/core/adapters" {
|
|
interface AdapterUser {
|
|
locale?: string;
|
|
}
|
|
}
|