]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/videos/stats/video-stats-timeserie.model.ts
Support interactive video stats graph
[github/Chocobozzz/PeerTube.git] / shared / models / videos / stats / video-stats-timeserie.model.ts
1 export interface VideoStatsTimeserie {
2 groupInterval: string
3
4 data: {
5 date: string
6 value: number
7 }[]
8 }