Files
songs2vid/types/next-auth.d.ts
T
Atakan Doğan Özban 6476bb42a4 Strip Songs2VID to a payment-free self-hosted OSS core.
Remove Stripe/billing/pricing/marketing, simplify schema and entitlements for unlimited self-host use, and keep auth, encode, and YouTube upload.
2026-08-03 06:52:00 +02:00

21 lines
340 B
TypeScript

import "next-auth";
declare module "next-auth" {
interface Session {
user: {
id?: string;
name?: string | null;
email?: string | null;
image?: string | null;
youtubeConnected?: boolean;
channelTitle?: string;
};
}
}
declare module "next-auth/jwt" {
interface JWT {
id?: string;
}
}