From 6117827dd602c03123fa9437e9a8d6d025299aad Mon Sep 17 00:00:00 2001 From: mat Date: Mon, 21 Feb 2022 14:14:05 -0600 Subject: add missing things to typings --- src/cleaners/skyblock/profile.ts | 1 + src/database.ts | 1 + 2 files changed, 2 insertions(+) (limited to 'src') diff --git a/src/cleaners/skyblock/profile.ts b/src/cleaners/skyblock/profile.ts index a7bc92a..d5ddc61 100644 --- a/src/cleaners/skyblock/profile.ts +++ b/src/cleaners/skyblock/profile.ts @@ -21,6 +21,7 @@ export interface CleanFullProfileBasicMembers extends CleanProfile { bank: Bank minions: CleanMinion[] minion_count: number + maxUniqueMinions: number } /** Return a `CleanProfile` instead of a `CleanFullProfile`, useful when we need to get members but don't want to waste much ram */ diff --git a/src/database.ts b/src/database.ts index 039f013..67de483 100644 --- a/src/database.ts +++ b/src/database.ts @@ -93,6 +93,7 @@ interface SessionSchema { export interface AccountCustomization { backgroundUrl?: string pack?: string + emoji?: string } export interface AccountSchema { -- cgit