From f93116c5eb64cccdac5a9d709de16a5dd8b01701 Mon Sep 17 00:00:00 2001 From: regalijan Date: Thu, 19 Oct 2023 16:50:07 -0400 Subject: [PATCH] Remove discriminator property and emotion server from type declarations --- index.d.ts | 6 ------ 1 file changed, 6 deletions(-) diff --git a/index.d.ts b/index.d.ts index 2657301..d66d867 100644 --- a/index.d.ts +++ b/index.d.ts @@ -1,5 +1,3 @@ -import type { EmotionCache } from "@emotion/utils"; - declare global { module "*.css"; @@ -31,7 +29,6 @@ declare global { learned: string; reason_for_unban: string; user: { - discriminator: string; id: string; username: string; }; @@ -66,13 +63,10 @@ declare global { target_ids: number[]; target_usernames: string[]; user?: { - discriminator: string; id: string; username: string; }; } - - export function createEmotionServer(cache: EmotionCache): EmotionServer; } export {};