summaryrefslogtreecommitdiffstats
path: root/sdnr/wt/odlux/apps/performanceHistoryApp/src/models/availableLtps.ts
diff options
context:
space:
mode:
Diffstat (limited to 'sdnr/wt/odlux/apps/performanceHistoryApp/src/models/availableLtps.ts')
-rw-r--r--sdnr/wt/odlux/apps/performanceHistoryApp/src/models/availableLtps.ts14
1 files changed, 14 insertions, 0 deletions
diff --git a/sdnr/wt/odlux/apps/performanceHistoryApp/src/models/availableLtps.ts b/sdnr/wt/odlux/apps/performanceHistoryApp/src/models/availableLtps.ts
new file mode 100644
index 000000000..15a27f147
--- /dev/null
+++ b/sdnr/wt/odlux/apps/performanceHistoryApp/src/models/availableLtps.ts
@@ -0,0 +1,14 @@
+ export type Ltp = {
+ key: string
+ }
+
+ export type Bucket={
+ buckets: Ltp[]
+ }
+
+/**
+ * Represents distinct available ltps using elasticsearch aggregations structure.
+ */
+ export type DistinctLtp = {
+ "uuid-interface": Bucket
+ }