From bf3d5581c55f115aab9fcce52196ffce593d169a Mon Sep 17 00:00:00 2001 From: regalijan Date: Thu, 19 Oct 2023 16:49:54 -0400 Subject: [PATCH] Remove user email from types (not used on client side) --- index.d.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/index.d.ts b/index.d.ts index e0c7cd5..9b01745 100644 --- a/index.d.ts +++ b/index.d.ts @@ -34,7 +34,7 @@ declare global { discriminator: string; id: string; username: string; - } + }; } interface GameAppealProps { @@ -55,10 +55,9 @@ declare global { target_usernames: string[]; user?: { discriminator: string; - email: string; id: string; username: string; - } + }; } export function createEmotionServer(cache: EmotionCache): EmotionServer;