first commit

This commit is contained in:
Beyhan Oğur
2026-04-26 22:12:36 +03:00
commit e881f38e4e
278 changed files with 24095 additions and 0 deletions

27
next-auth.d.ts vendored Normal file
View File

@@ -0,0 +1,27 @@
import "next-auth";
declare module "next-auth" {
interface User {
accessToken?: string;
refreshToken?: string;
expires?: number;
accessTokenExpiry?: number;
}
interface Session {
accessToken?: string;
refreshToken?: string;
expires?: number;
error?: string;
}
}
declare module "next-auth/jwt" {
interface JWT {
accessToken?: string;
refreshToken?: string;
expires?: number;
accessTokenExpiry?: number;
error?: string;
}
}