This commit is contained in:
Nathnael
2026-08-12 07:53:05 +00:00
parent d4767e0d06
commit 03e498d6e8
11 changed files with 391 additions and 26 deletions

View File

@@ -55,7 +55,8 @@ export interface ETradeCompanyInfo {
RenewedFrom: string;
RenewedTo: string;
BusinessLicensingGroupMain: string | null;
SubGroups: Array<{ Code: number; Description: string }> | null;
/** eTrade returns null entries in this array as well as a null array. */
SubGroups: Array<{ Code: number; Description: string | null } | null> | null;
}>;
}