PeerTube/server/types/models/user/user-video-history.ts

6 lines
238 B
TypeScript
Raw Normal View History

2019-08-15 11:53:26 +02:00
import { UserVideoHistoryModel } from '../../../models/account/user-video-history'
export type MUserVideoHistory = Omit<UserVideoHistoryModel, 'Video' | 'User'>
export type MUserVideoHistoryTime = Pick<MUserVideoHistory, 'currentTime'>