taxtank-core 2.1.69 → 2.1.71

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.d.ts CHANGED
@@ -9724,8 +9724,8 @@ interface BankAccountsFilterFormControls extends ControlsInterface {
9724
9724
  currencies: FormControl<string[]>;
9725
9725
  }
9726
9726
  declare class BankAccountsFilterForm extends AbstractForm<BankAccountCollection, BankAccountsFilterFormControls> {
9727
- private readonly availableCurrencies;
9728
- constructor(availableCurrencies: string[]);
9727
+ private bankAccounts;
9728
+ constructor(bankAccounts: BankAccountCollection);
9729
9729
  listenFormControlsChanges(): void;
9730
9730
  filter(bankAccounts: BankAccountCollection): BankAccountCollection;
9731
9731
  }