mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-05 02:39:33 +02:00
7 lines
189 B
TypeScript
7 lines
189 B
TypeScript
export type VideoRateType = 'like' | 'dislike'
|
|
export type UserVideoRateType = 'like' | 'dislike' | 'none'
|
|
|
|
export interface UserVideoRate {
|
|
videoId: string
|
|
rating: UserVideoRateType
|
|
}
|