aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/types/models/user/user-video-history.ts
blob: 62673ab1bd91923c7fa3bf521a4259702f4dc243 (plain) (blame)
1
2
3
4
5
import { UserVideoHistoryModel } from '../../../models/account/user-video-history'

export type MUserVideoHistory = Omit<UserVideoHistoryModel, 'Video' | 'User'>

export type MUserVideoHistoryTime = Pick<MUserVideoHistory, 'currentTime'>