taxtank-core 2.0.79 → 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/fesm2022/taxtank-core.mjs +17 -1
- package/fesm2022/taxtank-core.mjs.map +1 -1
- package/index.d.ts +2 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -5461,6 +5461,7 @@ declare class BudgetRule extends BudgetRule$1 implements CalendarEventProvider {
|
|
|
5461
5461
|
* creates recurring calendar events based on frequency
|
|
5462
5462
|
*/
|
|
5463
5463
|
get calendarEvents(): MoneyCalendarEvent[];
|
|
5464
|
+
inMonth(month: number): boolean;
|
|
5464
5465
|
}
|
|
5465
5466
|
|
|
5466
5467
|
declare enum YoutubeVideosEnum {
|
|
@@ -11361,6 +11362,7 @@ declare class BudgetRuleCollection extends Collection<BudgetRule> implements Cal
|
|
|
11361
11362
|
get incomes(): BudgetRuleCollection;
|
|
11362
11363
|
filterByProperties(properties: Property$1[]): BudgetRuleCollection;
|
|
11363
11364
|
get calendarEvents(): MoneyCalendarEvent[];
|
|
11365
|
+
getByMonth(index: number): BudgetRuleCollection;
|
|
11364
11366
|
}
|
|
11365
11367
|
|
|
11366
11368
|
declare class BudgetReportItemCollection extends Collection<BudgetReportItem> {
|