diff options
author | mat <27899617+mat-1@users.noreply.github.com> | 2021-02-13 23:53:39 -0600 |
---|---|---|
committer | mat <27899617+mat-1@users.noreply.github.com> | 2021-02-13 23:53:39 -0600 |
commit | 0896aa90b031fcb7c5820e885baa10f984991392 (patch) | |
tree | f32179c5a8384f5991fb24edbd0f8923ace16b7a /src/cleaners/skyblock/member.ts | |
parent | cf8b4923974e9f685209dc1218be20a06cc0f5c9 (diff) | |
download | skyblock-api-0896aa90b031fcb7c5820e885baa10f984991392.tar.gz skyblock-api-0896aa90b031fcb7c5820e885baa10f984991392.tar.bz2 skyblock-api-0896aa90b031fcb7c5820e885baa10f984991392.zip |
clean inventory items
Diffstat (limited to 'src/cleaners/skyblock/member.ts')
-rw-r--r-- | src/cleaners/skyblock/member.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cleaners/skyblock/member.ts b/src/cleaners/skyblock/member.ts index 796d524..6796f7d 100644 --- a/src/cleaners/skyblock/member.ts +++ b/src/cleaners/skyblock/member.ts @@ -1,5 +1,5 @@ import { CleanProfileStats, cleanProfileStats } from './stats' -import { cleanInventories, INVENTORIES } from './inventory' +import { cleanInventories, Inventories, INVENTORIES } from './inventory' import { cleanFairySouls, FairySouls } from './fairysouls' import { cleanObjectives, Objective } from './objectives' import { CleanMinion, cleanMinions } from './minions' @@ -22,7 +22,7 @@ export interface CleanMember extends CleanBasicMember { stats: CleanProfileStats minions: CleanMinion[] fairy_souls: FairySouls - inventories: typeof INVENTORIES + inventories: Inventories objectives: Objective[] skills: Skill[] } |