digicust_types 1.8.245 → 1.8.246
Sign up to get free protection for your applications and to get access to all the features.
@@ -1,10 +1,10 @@
|
|
1
1
|
import { DESpecificAggregated } from "./DE";
|
2
2
|
import { XKSpecificAggregated, XKSpecificLineItem } from "./XK";
|
3
3
|
export interface CountrySpecificAggregated {
|
4
|
-
XK
|
5
|
-
DE
|
4
|
+
XK?: XKSpecificAggregated;
|
5
|
+
DE?: DESpecificAggregated;
|
6
6
|
}
|
7
7
|
export interface CountrySpecificLineItem {
|
8
|
-
XK
|
9
|
-
DE
|
8
|
+
XK?: XKSpecificLineItem;
|
9
|
+
DE?: DESpecificAggregated;
|
10
10
|
}
|