taxtank-core 0.30.142 → 0.30.143
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/Enums/user-roles.enum.mjs +2 -2
- package/esm2020/lib/forms/property/borrowing-report.form.mjs +12 -7
- package/esm2020/lib/models/property/borrowing-report.mjs +4 -8
- package/fesm2015/taxtank-core.mjs +15 -14
- package/fesm2015/taxtank-core.mjs.map +1 -1
- package/fesm2020/taxtank-core.mjs +13 -14
- package/fesm2020/taxtank-core.mjs.map +1 -1
- package/lib/db/Enums/user-roles.enum.d.ts +1 -1
- package/lib/forms/property/borrowing-report.form.d.ts +5 -2
- package/package.json +1 -1
|
@@ -4,9 +4,12 @@ import { BorrowingReport } from '../../models';
|
|
|
4
4
|
* https://taxtank.atlassian.net/wiki/spaces/TAXTANK/pages/4717608961/Borrowing+Power+Report+-+Property+Tank
|
|
5
5
|
*/
|
|
6
6
|
export declare class BorrowingReportForm extends AbstractForm<BorrowingReport> {
|
|
7
|
-
constructor(report: BorrowingReport);
|
|
8
7
|
/**
|
|
9
|
-
*
|
|
8
|
+
* extra params are auto-calculated numbers used if user didn't specify manual numbers
|
|
9
|
+
*/
|
|
10
|
+
constructor(report?: BorrowingReport, netSalary?: number, spouseNetSalary?: number);
|
|
11
|
+
/**
|
|
12
|
+
* some fields are auto-calculated, shouldn't be updated until changed by user
|
|
10
13
|
*/
|
|
11
14
|
submit(data?: object, includeDisabledFields?: boolean): BorrowingReport;
|
|
12
15
|
}
|