aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wt/odlux/apps/performanceHistoryApp/src/models/availableLtps.ts
blob: d5a6c6888849fa94abde21ab9717958353d5e320 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  export type LtpIds = {
    key: string
  }

  export type Bucket<T>={ 
    buckets: T[]
  }

/**
 * Represents distinct available ltps using elasticsearch aggregations structure.
 */
  export type DistinctLtp = {
    "uuid-interface": Bucket<LtpIds>
  }