spartaxx.businessmodels 1.0.69 → 1.0.70
Sign up to get free protection for your applications and to get access to all the features.
- package/Protest/AccountListingTable.js +2 -0
- package/Protest/AccountListingTable.ts +7 -0
- package/Protest/AccountListingTableHeaders.js +2 -0
- package/Protest/AccountListingTableHeaders.ts +6 -0
- package/Protest/AccountListingTableRow.js +2 -0
- package/Protest/AccountListingTableRow.ts +6 -0
- package/Protest/ProtestModels.ts +4 -2
- package/package.json +1 -1
@@ -0,0 +1,7 @@
|
|
1
|
+
import { AccountListingTableHeaders } from "./ProtestHB201RequestDocument";
|
2
|
+
import { AccountListingTableRow } from "./AccountListingTableRow";
|
3
|
+
|
4
|
+
export interface AccountListingTable {
|
5
|
+
Headers?: AccountListingTableHeaders[];
|
6
|
+
Rows?: AccountListingTableRow[];
|
7
|
+
}
|
package/Protest/ProtestModels.ts
CHANGED
@@ -11,10 +11,12 @@ import { ProtestHistory } from "./ProtestHistory";
|
|
11
11
|
import { ProtestHistoryParam } from "./ProtestHistoryParam";
|
12
12
|
import { InitiateProtestParam } from "./InitiateProtestParam";
|
13
13
|
import { ProtestModeModifiedInfo } from "./ProtestModeModifiedInfo";
|
14
|
-
|
14
|
+
import { AccountListingTableRow } from "./AccountListingTableRow";
|
15
|
+
import { AccountListingTableHeaders } from "./AccountListingTableHeaders";
|
16
|
+
import { AccountListingTable } from "./AccountListingTable";
|
15
17
|
export {
|
16
18
|
ProtestDocuments, ProtestHistoryInfo, ProtestPropertyInfo, ProtestingAccounts,
|
17
19
|
ProtestPTFayetteDcoument, ProtestHB201RequestDocument, PTBexarExcelDocument,
|
18
20
|
ProtestingAccountInfo, ProtestAccountParam, ProtestHistory, ProtestHistoryParam,
|
19
|
-
InitiateProtestParam, ProtestModeModifiedInfo
|
21
|
+
InitiateProtestParam, ProtestModeModifiedInfo, AccountListingTableRow, AccountListingTableHeaders, AccountListingTable
|
20
22
|
};
|