🏷️ add type for after handle auth

This commit is contained in:
Rafi Arrafif
2025-08-10 23:55:32 +07:00
parent 8e584ff14e
commit 2ccb95e50f
5 changed files with 40 additions and 0 deletions

View File

@ -0,0 +1,6 @@
export interface LoginIfExistAndCreateIfNot {
email: string;
username?: string;
name: string;
provider: "Google" | "GitHub";
}