taxtank-core 0.28.24 → 0.28.26
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/bundles/taxtank-core.umd.js +12 -0
- package/bundles/taxtank-core.umd.js.map +1 -1
- package/esm2015/lib/forms/bank/bank-account/bank-account-import.form.js +3 -1
- package/esm2015/lib/models/bank/bank-account.js +7 -1
- package/fesm2015/taxtank-core.js +8 -0
- package/fesm2015/taxtank-core.js.map +1 -1
- package/lib/models/bank/bank-account.d.ts +4 -0
- package/package.json +1 -1
|
@@ -17,6 +17,10 @@ export declare class BankAccount extends BankAccountBase {
|
|
|
17
17
|
get bank(): Bank;
|
|
18
18
|
get bsb(): string;
|
|
19
19
|
get number(): string;
|
|
20
|
+
/**
|
|
21
|
+
* Get last digits of account number
|
|
22
|
+
*/
|
|
23
|
+
get partialAccountNumber(): string;
|
|
20
24
|
/**
|
|
21
25
|
* Get current opening balance amount
|
|
22
26
|
*/
|