modify method name

This commit is contained in:
MaysWind
2025-03-23 14:54:55 +08:00
parent 1d23558dff
commit fc2c5a8e6c
11 changed files with 18 additions and 18 deletions
+2 -2
View File
@@ -312,11 +312,11 @@ export class Account implements AccountInfoResponse {
accountResponse.creditCardStatementDate,
accountResponse.isAsset,
accountResponse.isLiability,
accountResponse.subAccounts ? Account.ofMany(accountResponse.subAccounts) : undefined
accountResponse.subAccounts ? Account.ofMulti(accountResponse.subAccounts) : undefined
);
}
public static ofMany(accountResponses: AccountInfoResponse[]): Account[] {
public static ofMulti(accountResponses: AccountInfoResponse[]): Account[] {
const accounts: Account[] = [];
for (const accountResponse of accountResponses) {