aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/videos/stats/video-stats-timeserie.model.ts
blob: d95e34f1d3e9577001a593088b264f43db6bd803 (plain) (blame)
1
2
3
4
5
6
export interface VideoStatsTimeserie {
  data: {
    date: string
    value: number
  }[]
}