diff --git a/src/Augmentation/Augmentation.tsx b/src/Augmentation/Augmentation.tsx index 4530ec80a..9f8d22a4e 100644 --- a/src/Augmentation/Augmentation.tsx +++ b/src/Augmentation/Augmentation.tsx @@ -1,6 +1,5 @@ // Class definition for a single Augmentation object import * as React from "react"; -import { IMap } from "../types"; import { Faction } from "../Faction/Faction"; import { Factions } from "../Faction/Factions"; diff --git a/src/Augmentation/ui/PlayerMultipliers.tsx b/src/Augmentation/ui/PlayerMultipliers.tsx index ff0317f37..007f04f34 100644 --- a/src/Augmentation/ui/PlayerMultipliers.tsx +++ b/src/Augmentation/ui/PlayerMultipliers.tsx @@ -11,10 +11,6 @@ import { Settings } from "../../Settings/Settings"; import { numeralWrapper } from "../../ui/numeralFormat"; import { StaticAugmentations } from "../StaticAugmentations"; -interface IAugmentedStats { - [index: string]: number; -} - function calculateAugmentedStats(): Multipliers { let augP: Multipliers = defaultMultipliers(); for (const aug of Player.queuedAugmentations) { diff --git a/src/Corporation/ResearchTree.ts b/src/Corporation/ResearchTree.ts index 5506c2075..a76d2aaa1 100644 --- a/src/Corporation/ResearchTree.ts +++ b/src/Corporation/ResearchTree.ts @@ -8,8 +8,6 @@ import { ResearchMap } from "./ResearchMap"; import { IMap } from "../types"; -import { numeralWrapper } from "../ui/numeralFormat"; - interface IConstructorParams { children?: Node[]; cost: number; diff --git a/src/Gang/Gang.ts b/src/Gang/Gang.ts index 7c0d3515f..0ca99b964 100644 --- a/src/Gang/Gang.ts +++ b/src/Gang/Gang.ts @@ -10,7 +10,7 @@ import { Factions } from "../Faction/Factions"; import { dialogBoxCreate } from "../ui/React/DialogBox"; import { Reviver, Generic_toJSON, Generic_fromJSON, IReviverValue } from "../utils/JSONReviver"; -import { exceptionAlert, isIError } from "../utils/helpers/exceptionAlert"; +import { exceptionAlert } from "../utils/helpers/exceptionAlert"; import { getRandomInt } from "../utils/helpers/getRandomInt"; import { GangMemberUpgrade } from "./GangMemberUpgrade"; diff --git a/src/NetscriptFunctions/Gang.ts b/src/NetscriptFunctions/Gang.ts index 62e28e3de..8e13bf9ba 100644 --- a/src/NetscriptFunctions/Gang.ts +++ b/src/NetscriptFunctions/Gang.ts @@ -17,7 +17,6 @@ import { GangMemberAscension, EquipmentStats, GangTaskStats, - GangTerritory, GangOtherInfoObject, } from "../ScriptEditor/NetscriptDefinitions"; import { InternalAPI, NetscriptContext } from "../Netscript/APIWrapper"; diff --git a/src/PersonObjects/Person.ts b/src/PersonObjects/Person.ts index d198e13df..47a15f26d 100644 --- a/src/PersonObjects/Person.ts +++ b/src/PersonObjects/Person.ts @@ -7,7 +7,7 @@ import { CONSTANTS } from "../Constants"; import { calculateSkill } from "./formulas/skill"; import { calculateIntelligenceBonus } from "./formulas/intelligence"; import { IPerson } from "./IPerson"; -import { defaultMultipliers, mergeMultipliers, Multipliers } from "./Multipliers"; +import { defaultMultipliers, mergeMultipliers } from "./Multipliers"; // Base class representing a person-like object export abstract class Person implements IPerson {