initial commit

This commit is contained in:
shafin-r
2025-07-03 01:43:25 +06:00
commit 5dc53b896e
279 changed files with 28956 additions and 0 deletions

17
torpedo/next-auth.d.ts vendored Normal file
View File

@ -0,0 +1,17 @@
// next-auth.d.ts
import NextAuth from "next-auth";
import { JWT } from "next-auth/jwt";
// Extend the default session interface
declare module "next-auth" {
interface Session {
accessToken?: string;
}
}
// Extend the default JWT interface
declare module "next-auth/jwt" {
interface JWT {
accessToken?: string;
}
}