From 18ce6d66323cacbb2b4642cb1c15e40a3b3d6128 Mon Sep 17 00:00:00 2001 From: Bertie690 Date: Sat, 7 Jun 2025 13:30:55 -0400 Subject: [PATCH] Deleted oopie --- src/@types/DexData.ts | 16 ---------------- src/@types/locales.ts | 3 --- 2 files changed, 19 deletions(-) delete mode 100644 src/@types/DexData.ts diff --git a/src/@types/DexData.ts b/src/@types/DexData.ts deleted file mode 100644 index 19bb0357471..00000000000 --- a/src/@types/DexData.ts +++ /dev/null @@ -1,16 +0,0 @@ -/** - * Dex entry for a single Pokemon Species - */ -export interface DexEntry { - seenAttr: bigint; - caughtAttr: bigint; - natureAttr: number; - seenCount: number; - caughtCount: number; - hatchedCount: number; - ivs: number[]; -} - -export interface DexData { - [key: number]: DexEntry; -} diff --git a/src/@types/locales.ts b/src/@types/locales.ts index 2d26911f82f..3b5a1477e19 100644 --- a/src/@types/locales.ts +++ b/src/@types/locales.ts @@ -2,9 +2,6 @@ export interface Localizable { localize(): void; } -export interface TranslationEntries { - [key: string]: string | { [key: string]: string }; -} export interface SimpleTranslationEntries { [key: string]: string; }