blob: b770f407309e674ed0283486a98831b11207d4ba (
plain) (
blame)
1
2
3
4
5
6
7
|
export type VideoRateType = 'like' | 'dislike'
export type UserVideoRateType = 'like' | 'dislike' | 'none'
export interface UserVideoRate {
videoId: string
rating: UserVideoRateType
}
|