taxtank-core 0.21.14 → 0.21.17
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 +7 -2
- package/bundles/taxtank-core.umd.js.map +1 -1
- package/esm2015/lib/models/depreciation/depreciation-group.js +4 -2
- package/esm2015/lib/models/report/my-tax/my-tax-deductions/my-tax-deductions.js +6 -3
- package/esm2015/lib/models/transaction/transaction.js +4 -1
- package/fesm2015/taxtank-core.js +10 -2
- package/fesm2015/taxtank-core.js.map +1 -1
- package/lib/models/depreciation/depreciation-group.d.ts +3 -1
- package/lib/models/transaction/transaction.d.ts +1 -0
- package/package.json +1 -1
|
@@ -6,6 +6,8 @@ export declare class DepreciationGroup {
|
|
|
6
6
|
description: string;
|
|
7
7
|
icon: string;
|
|
8
8
|
children: DepreciationGroup[];
|
|
9
|
-
|
|
9
|
+
totalCost: number;
|
|
10
|
+
openingValue: number;
|
|
11
|
+
constructor(label: string, description?: string, icon?: string, children?: DepreciationGroup[], totalCost?: number, openingValue?: number);
|
|
10
12
|
getClaimAmount(): number;
|
|
11
13
|
}
|
|
@@ -66,6 +66,7 @@ export declare class Transaction extends TransactionBase implements Expense, IRe
|
|
|
66
66
|
* @TODO bad usage of get (and all is* methods), getter should sound like a noun
|
|
67
67
|
*/
|
|
68
68
|
get isTransfer(): boolean;
|
|
69
|
+
isFindAndMatch(): boolean;
|
|
69
70
|
get debit(): number;
|
|
70
71
|
get credit(): number;
|
|
71
72
|
/**
|