Checkpoint: Initial stable CheckFlow base before i18n and demo mode

This commit is contained in:
Wonhee Han
2026-08-20 14:01:12 +09:00
parent ed076cf5ab
commit dbfaa0fcb2
42 changed files with 4727 additions and 167 deletions
+21
View File
@@ -0,0 +1,21 @@
import "next-auth";
import "next-auth/jwt";
declare module "next-auth" {
interface User {
id: string;
}
interface Session {
user: {
id: string;
name?: string | null;
email?: string | null;
};
}
}
declare module "next-auth/jwt" {
interface JWT {
id: string;
}
}