From 64d095e9118fa69a269acf53f7264d3e569afa7f Mon Sep 17 00:00:00 2001 From: phyzical Date: Wed, 30 Mar 2022 22:24:19 +0800 Subject: [PATCH] change to any for ns location --- src/ScriptEditor/NetscriptDefinitions.d.ts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/ScriptEditor/NetscriptDefinitions.d.ts b/src/ScriptEditor/NetscriptDefinitions.d.ts index 87e65df5a..7b3d55455 100644 --- a/src/ScriptEditor/NetscriptDefinitions.d.ts +++ b/src/ScriptEditor/NetscriptDefinitions.d.ts @@ -1,5 +1,3 @@ -import { Location } from "src/Locations/Location"; - /** * @public */ @@ -4185,7 +4183,7 @@ export interface InfiltrationReward { } export interface InfiltrationLocation { - location: Location; + location: any; reward: InfiltrationReward; difficulty: number; } @@ -4220,7 +4218,7 @@ interface Infiltration { * * @returns all locations that can be infiltrated. */ - getLocations(): Location[]; + getLocations(): any[]; /** * Get all infiltrations with difficulty, location and rewards. * @remarks