aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/videos/stats/video-stats-timeserie.model.ts
blob: 99bbbe2e32daaf2667f64bc41ece0c98eb3174c2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import { VideoStatsTimeserieGroupInterval } from './video-stats-timeserie-group-interval.type'

export interface VideoStatsTimeserie {
  groupInterval: VideoStatsTimeserieGroupInterval

  data: {
    date: string
    value: number
  }[]
}