6 lines
129 B
TypeScript
6 lines
129 B
TypeScript
|
import { UserVideoRateType } from './user-video-rate.type'
|
||
|
|
||
|
export interface UserVideoRateUpdate {
|
||
|
rating: UserVideoRateType
|
||
|
}
|