From 8d2722bdd81591feef14dd4ccdf99ac9c1309925 Mon Sep 17 00:00:00 2001 From: mat <27899617+mat-1@users.noreply.github.com> Date: Sat, 13 Feb 2021 15:03:13 -0600 Subject: add optional check to verify all clients are owned by the creator --- src/cleaners/skyblock/stats.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/cleaners') diff --git a/src/cleaners/skyblock/stats.ts b/src/cleaners/skyblock/stats.ts index 07d9133..c4ff545 100644 --- a/src/cleaners/skyblock/stats.ts +++ b/src/cleaners/skyblock/stats.ts @@ -61,7 +61,7 @@ export interface CleanProfileStats { } } -export function cleanProfileStats(statsRaw): CleanProfileStats { +export function cleanProfileStats(statsRaw: any): CleanProfileStats { // TODO: add type for statsRaw (probably in hypixelApi.ts since its coming from there) const stats: CleanProfileStats = {} for (let statNameRaw in statsRaw) { -- cgit