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/fesm2022/taxtank-core.mjs +8 -5
- package/fesm2022/taxtank-core.mjs.map +1 -1
- package/index.d.ts +2 -2
- package/index.d.ts.map +1 -1
- package/package.json +1 -1
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
|
|
9728
|
-
constructor(
|
|
9727
|
+
private bankAccounts;
|
|
9728
|
+
constructor(bankAccounts: BankAccountCollection);
|
|
9729
9729
|
listenFormControlsChanges(): void;
|
|
9730
9730
|
filter(bankAccounts: BankAccountCollection): BankAccountCollection;
|
|
9731
9731
|
}
|