]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - shared/models/user-video-rate.model.ts
Fix test (#71)
[github/Chocobozzz/PeerTube.git] / shared / models / user-video-rate.model.ts
CommitLineData
ee9e7b61 1export type VideoRateType = 'like' | 'dislike'
154898b0
C
2export type UserVideoRateType = 'like' | 'dislike' | 'none'
3
4export interface UserVideoRate {
5 videoId: string
6 rating: UserVideoRateType
7}