Initial open-source self-hosted Songs2YT edition
This commit is contained in:
Vendored
+21
@@ -0,0 +1,21 @@
|
||||
import "next-auth";
|
||||
|
||||
declare module "next-auth" {
|
||||
interface Session {
|
||||
user: {
|
||||
id?: string;
|
||||
name?: string | null;
|
||||
email?: string | null;
|
||||
image?: string | null;
|
||||
plan?: string;
|
||||
youtubeConnected?: boolean;
|
||||
channelTitle?: string;
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
declare module "next-auth/jwt" {
|
||||
interface JWT {
|
||||
id?: string;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user