mirror of
https://github.com/maxswa/osrs-json-hiscores.git
synced 2025-10-15 10:19:04 +00:00
Remove renamed import
This commit is contained in:
@@ -6,7 +6,7 @@ import {
|
||||
Skill,
|
||||
Stats,
|
||||
Skills,
|
||||
BH as BHStats,
|
||||
BH,
|
||||
Clues,
|
||||
Gamemode,
|
||||
SkillName,
|
||||
@@ -251,13 +251,13 @@ export function parseStats(csv: string): Stats {
|
||||
{} as Skills
|
||||
);
|
||||
|
||||
const bh: BHStats = bhObjects.reduce<BHStats>(
|
||||
const bh: BH = bhObjects.reduce<BH>(
|
||||
(prev, curr, index) => {
|
||||
const newBH = { ...prev };
|
||||
newBH[BH_MODES[index]] = curr;
|
||||
return newBH;
|
||||
},
|
||||
{} as BHStats
|
||||
{} as BH
|
||||
);
|
||||
|
||||
const clues: Clues = clueObjects.reduce<Clues>(
|
||||
|
Reference in New Issue
Block a user