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

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

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