Make list of divisions accessable on the corp

This commit is contained in:
pigalot
2022-01-11 20:25:23 +00:00
parent 360b8d8d16
commit 74019bc2be
2 changed files with 27 additions and 19 deletions

View File

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