Remove user email from types (not used on client side)

This commit is contained in:
regalijan 2023-10-19 16:49:54 -04:00
parent baae1c560e
commit bf3d5581c5
Signed by: regalijan
GPG Key ID: 5D4196DA269EF520

5
index.d.ts vendored
View File

@ -34,7 +34,7 @@ declare global {
discriminator: string; discriminator: string;
id: string; id: string;
username: string; username: string;
} };
} }
interface GameAppealProps { interface GameAppealProps {
@ -55,10 +55,9 @@ declare global {
target_usernames: string[]; target_usernames: string[];
user?: { user?: {
discriminator: string; discriminator: string;
email: string;
id: string; id: string;
username: string; username: string;
} };
} }
export function createEmotionServer(cache: EmotionCache): EmotionServer; export function createEmotionServer(cache: EmotionCache): EmotionServer;