digicust_types 1.8.157 → 1.8.159
Sign up to get free protection for your applications and to get access to all the features.
@@ -113,10 +113,10 @@ export interface AggregatedCaseDataModel {
|
|
113
113
|
/**
|
114
114
|
* Contains (experimental) aggregated descriptions by tariff number and country of origin code
|
115
115
|
*/
|
116
|
-
aggregatedDescriptions
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
};
|
116
|
+
aggregatedDescriptions?: {
|
117
|
+
tariffNumber: string;
|
118
|
+
alpha2Code: string;
|
119
|
+
description: string;
|
120
|
+
}[];
|
121
121
|
}
|
122
122
|
export declare const condenseAggregated: (aggregated?: AggregatedCaseDataModel) => AggregatedCaseDataModel;
|