Split types and typings
[oweals/peertube.git] / server / types / 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'>