taxtank-core 2.1.67 → 2.1.69

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,9 @@ interface BankAccountsFilterFormControls extends ControlsInterface {
9724
9724
  currencies: FormControl<string[]>;
9725
9725
  }
9726
9726
  declare class BankAccountsFilterForm extends AbstractForm<BankAccountCollection, BankAccountsFilterFormControls> {
9727
- constructor();
9728
- listenCurrencyTypeChanges(): void;
9727
+ private readonly availableCurrencies;
9728
+ constructor(availableCurrencies: string[]);
9729
+ listenFormControlsChanges(): void;
9729
9730
  filter(bankAccounts: BankAccountCollection): BankAccountCollection;
9730
9731
  }
9731
9732