taxtank-core 3.0.2 → 3.0.3
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 +13 -5
- package/fesm2022/taxtank-core.mjs.map +1 -1
- package/index.d.ts +5 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -10589,7 +10589,7 @@ declare const atoLinks: {
|
|
|
10589
10589
|
/**
|
|
10590
10590
|
* Class with property transactions report entities
|
|
10591
10591
|
*/
|
|
10592
|
-
declare class PropertyReportItem extends AbstractModel {
|
|
10592
|
+
declare abstract class PropertyReportItem extends AbstractModel {
|
|
10593
10593
|
amount: number;
|
|
10594
10594
|
description: string;
|
|
10595
10595
|
/**
|
|
@@ -10600,8 +10600,8 @@ declare class PropertyReportItem extends AbstractModel {
|
|
|
10600
10600
|
claimPercent: number;
|
|
10601
10601
|
propertyId: number;
|
|
10602
10602
|
chartAccounts: ChartAccounts;
|
|
10603
|
-
constructor(property: Property$1, chartAccounts: ChartAccounts);
|
|
10604
|
-
get claimAmount(): number;
|
|
10603
|
+
protected constructor(property: Property$1, chartAccounts: ChartAccounts);
|
|
10604
|
+
abstract get claimAmount(): number;
|
|
10605
10605
|
get shareClaimAmount(): number;
|
|
10606
10606
|
isIncome(): boolean;
|
|
10607
10607
|
isExpense(): boolean;
|
|
@@ -10620,7 +10620,9 @@ declare class PropertyReportItemDepreciation extends PropertyReportItem {
|
|
|
10620
10620
|
* Class with transaction-based property transactions report entities
|
|
10621
10621
|
*/
|
|
10622
10622
|
declare class PropertyReportItemTransaction extends PropertyReportItem {
|
|
10623
|
+
private transactions;
|
|
10623
10624
|
constructor(transactions: TransactionCollection, property: Property$1, chartAccounts: ChartAccounts);
|
|
10625
|
+
get claimAmount(): number;
|
|
10624
10626
|
}
|
|
10625
10627
|
|
|
10626
10628
|
/**
|