62673ab1bd91923c7fa3bf521a4259702f4dc243
[oweals/peertube.git] / server / typings / models / user / user-video-history.ts
1 import { UserVideoHistoryModel } from '../../../models/account/user-video-history'
2
3 export type MUserVideoHistory = Omit<UserVideoHistoryModel, 'Video' | 'User'>
4
5 export type MUserVideoHistoryTime = Pick<MUserVideoHistory, 'currentTime'>