getCorporation() returns division names (#266)

This commit is contained in:
zerbosh
2022-12-29 10:30:16 +01:00
committed by GitHub
parent 5c80655d62
commit 24ad342203
2 changed files with 3 additions and 3 deletions

View File

@@ -7598,8 +7598,8 @@ interface CorporationInfo {
dividendEarnings: number;
/** State of the corporation. Possible states are START, PURCHASE, PRODUCTION, SALE, EXPORT. */
state: string;
/** Array of all divisions */
divisions: Division[];
/** Array of all division names */
divisions: string[];
}
/**