diff --git a/markdown/bitburner.gang.getotherganginformation.md b/markdown/bitburner.gang.getotherganginformation.md index d260ae011..ca884d935 100644 --- a/markdown/bitburner.gang.getotherganginformation.md +++ b/markdown/bitburner.gang.getotherganginformation.md @@ -9,11 +9,11 @@ Get information about the other gangs. **Signature:** ```typescript -getOtherGangInformation(): GangOtherInfo; +getOtherGangInformation(): Record; ``` **Returns:** -[GangOtherInfo](./bitburner.gangotherinfo.md) +Record<string, [GangOtherInfoObject](./bitburner.gangotherinfoobject.md)> Object containing territory and power information about all gangs. diff --git a/markdown/bitburner.gangotherinfo.md b/markdown/bitburner.gangotherinfo.md deleted file mode 100644 index 7609298e1..000000000 --- a/markdown/bitburner.gangotherinfo.md +++ /dev/null @@ -1,12 +0,0 @@ - - -[Home](./index.md) > [bitburner](./bitburner.md) > [GangOtherInfo](./bitburner.gangotherinfo.md) - -## GangOtherInfo interface - - -**Signature:** - -```typescript -interface GangOtherInfo -``` diff --git a/markdown/bitburner.md b/markdown/bitburner.md index 7a716059b..d20a30fd3 100644 --- a/markdown/bitburner.md +++ b/markdown/bitburner.md @@ -79,7 +79,6 @@ | [GangMemberAscension](./bitburner.gangmemberascension.md) | | | [GangMemberInfo](./bitburner.gangmemberinfo.md) | | | [GangMemberInstall](./bitburner.gangmemberinstall.md) | | -| [GangOtherInfo](./bitburner.gangotherinfo.md) | | | [GangOtherInfoObject](./bitburner.gangotherinfoobject.md) | | | [GangTaskStats](./bitburner.gangtaskstats.md) | Object representing data representing a gang member task. | | [GangTerritory](./bitburner.gangterritory.md) | | diff --git a/src/ScriptEditor/NetscriptDefinitions.d.ts b/src/ScriptEditor/NetscriptDefinitions.d.ts index dee655206..fabeaf863 100644 --- a/src/ScriptEditor/NetscriptDefinitions.d.ts +++ b/src/ScriptEditor/NetscriptDefinitions.d.ts @@ -858,11 +858,6 @@ interface GangOtherInfoObject { territory: number; } -/** @public */ -interface GangOtherInfo { - [key: string]: GangOtherInfoObject; -} - /** * Object representing data representing a gang member task. * @public @@ -4022,7 +4017,7 @@ export interface Gang { * * @returns Object containing territory and power information about all gangs. */ - getOtherGangInformation(): GangOtherInfo; + getOtherGangInformation(): Record; /** * Get information about a specific gang member.