mirror of https://github.com/Chocobozzz/PeerTube
7 lines
141 B
TypeScript
7 lines
141 B
TypeScript
|
import { UserVideoRateType } from './user-video-rate.type'
|
||
|
|
||
|
export interface UserVideoRate {
|
||
|
videoId: number
|
||
|
rating: UserVideoRateType
|
||
|
}
|