summaryrefslogtreecommitdiffstats
path: root/sdnr/wt/odlux/apps/performanceHistoryApp/src/models/availableLtps.ts
blob: 15a27f1473c417f7c53310e4b7caaf5e964e1c05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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
  }