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/fesm2022/taxtank-core.mjs +15 -6
- package/fesm2022/taxtank-core.mjs.map +1 -1
- package/index.d.ts +3 -2
- package/index.d.ts.map +1 -1
- package/package.json +1 -1
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
|
-
|
|
9728
|
-
|
|
9727
|
+
private readonly availableCurrencies;
|
|
9728
|
+
constructor(availableCurrencies: string[]);
|
|
9729
|
+
listenFormControlsChanges(): void;
|
|
9729
9730
|
filter(bankAccounts: BankAccountCollection): BankAccountCollection;
|
|
9730
9731
|
}
|
|
9731
9732
|
|