taxtank-core 0.30.1 → 0.30.2
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/esm2020/lib/db/Models/transaction/transaction-base.mjs +5 -1
- package/fesm2015/taxtank-core.mjs +4 -0
- package/fesm2015/taxtank-core.mjs.map +1 -1
- package/fesm2020/taxtank-core.mjs +4 -0
- package/fesm2020/taxtank-core.mjs.map +1 -1
- package/lib/db/Models/transaction/transaction-base.d.ts +4 -0
- package/package.json +1 -1
|
@@ -23,6 +23,10 @@ export declare class TransactionBase extends ObservableModel {
|
|
|
23
23
|
claimPercent?: number;
|
|
24
24
|
get claimRatio(): number;
|
|
25
25
|
get tankType(): TankTypeEnum;
|
|
26
|
+
/**
|
|
27
|
+
* @TODO remove when AllocateForm is refactored and not merging with Transaction class which cause the issue
|
|
28
|
+
*/
|
|
29
|
+
set tankType(tankType: TankTypeEnum);
|
|
26
30
|
/**
|
|
27
31
|
* Check if current tank is Property
|
|
28
32
|
*/
|