mirror of https://github.com/Chocobozzz/PeerTube
8 lines
180 B
TypeScript
8 lines
180 B
TypeScript
|
import { UserVideoRateType } from './user-video-rate.type'
|
||
|
import { Video } from '../video.model'
|
||
|
|
||
|
export interface AccountVideoRate {
|
||
|
video: Video
|
||
|
rating: UserVideoRateType
|
||
|
}
|