spartaxx.businessmodels 1.0.43 → 1.0.45
Sign up to get free protection for your applications and to get access to all the features.
- package/Common/ExcelExport.ts +7 -5
- package/Common/ExportExcelConfig.ts +6 -0
- package/Common/ExportPdfConfig.ts +6 -0
- package/Common/PdfExport.ts +8 -0
- package/Protest/PTBexarExcelDocument.js +2 -0
- package/Protest/{PTBexarExcel.ts → PTBexarExcelDocument.ts} +1 -1
- package/Protest/ProtestHB201RequestDocument.js +2 -0
- package/Protest/{ProtestHB201RequestLetter.ts → ProtestHB201RequestDocument.ts} +1 -1
- package/Protest/ProtestModels.ts +4 -4
- package/Protest/ProtestPTFayetteDocument.js +2 -0
- package/Protest/{ProtestPTFayette.ts → ProtestPTFayetteDocument.ts} +1 -1
- package/package.json +1 -1
- /package/{Protest/PTBexarExcel.js → Common/ExportExcelConfig.js} +0 -0
- /package/{Protest/ProtestHB201RequestLetter.js → Common/ExportPdfConfig.js} +0 -0
- /package/{Protest/ProtestPTFayette.js → Common/PdfExport.js} +0 -0
package/Common/ExcelExport.ts
CHANGED
@@ -1,6 +1,8 @@
|
|
1
|
+
import { ExportExcelConfig } from "./ExportExcelConfig";
|
2
|
+
|
1
3
|
export interface ExcelExport {
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
4
|
+
data: any[];
|
5
|
+
columnsList: any[];
|
6
|
+
exportExcelConfig: ExportExcelConfig;
|
7
|
+
sheetName?: string;
|
8
|
+
}
|
package/Protest/ProtestModels.ts
CHANGED
@@ -2,8 +2,8 @@ import { ProtestDocuments } from "./ProtestDocuments";
|
|
2
2
|
import { ProtestHistoryInfo } from "./ProtestHistoryInfo";
|
3
3
|
import { ProtestPropertyInfo } from "./ProtestPropertyInfo";
|
4
4
|
import { ProtestingAccounts } from "./ProtestingAccounts";
|
5
|
-
import {
|
6
|
-
import {
|
7
|
-
import {
|
5
|
+
import { ProtestPTFayetteDcoument } from "./ProtestPTFayetteDocument";
|
6
|
+
import { ProtestHB201RequestDocument } from "./ProtestHB201RequestDocument";
|
7
|
+
import { PTBexarExcelDocument } from "./PTBexarExcelDocument";
|
8
8
|
|
9
|
-
export { ProtestDocuments, ProtestHistoryInfo, ProtestPropertyInfo, ProtestingAccounts,
|
9
|
+
export { ProtestDocuments, ProtestHistoryInfo, ProtestPropertyInfo, ProtestingAccounts, ProtestPTFayetteDcoument, ProtestHB201RequestDocument, PTBexarExcelDocument };
|
package/package.json
CHANGED
File without changes
|
File without changes
|
File without changes
|