taxtank-core 2.0.78 → 2.0.81
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/README.md +5 -5
- package/fesm2022/taxtank-core-common.mjs.map +1 -1
- package/fesm2022/taxtank-core.mjs +30 -18
- package/fesm2022/taxtank-core.mjs.map +1 -1
- package/index.d.ts +2 -4
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -2016,10 +2016,6 @@ declare class ChartSerie {
|
|
|
2016
2016
|
value: number;
|
|
2017
2017
|
}
|
|
2018
2018
|
|
|
2019
|
-
/**
|
|
2020
|
-
* Chart data class
|
|
2021
|
-
* @TODO consider rename to ChartSerie
|
|
2022
|
-
*/
|
|
2023
2019
|
declare class ChartData {
|
|
2024
2020
|
name: string;
|
|
2025
2021
|
data: ChartSerie[];
|
|
@@ -5465,6 +5461,7 @@ declare class BudgetRule extends BudgetRule$1 implements CalendarEventProvider {
|
|
|
5465
5461
|
* creates recurring calendar events based on frequency
|
|
5466
5462
|
*/
|
|
5467
5463
|
get calendarEvents(): MoneyCalendarEvent[];
|
|
5464
|
+
inMonth(month: number): boolean;
|
|
5468
5465
|
}
|
|
5469
5466
|
|
|
5470
5467
|
declare enum YoutubeVideosEnum {
|
|
@@ -11365,6 +11362,7 @@ declare class BudgetRuleCollection extends Collection<BudgetRule> implements Cal
|
|
|
11365
11362
|
get incomes(): BudgetRuleCollection;
|
|
11366
11363
|
filterByProperties(properties: Property$1[]): BudgetRuleCollection;
|
|
11367
11364
|
get calendarEvents(): MoneyCalendarEvent[];
|
|
11365
|
+
getByMonth(index: number): BudgetRuleCollection;
|
|
11368
11366
|
}
|
|
11369
11367
|
|
|
11370
11368
|
declare class BudgetReportItemCollection extends Collection<BudgetReportItem> {
|