aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/typings/models/video/schedule-video-update.ts
blob: ada9af06e8569462e5d693e7708b830c8d3df055 (plain) (blame)
1
2
3
4
5
6
7
8
9
import { ScheduleVideoUpdateModel } from '../../../models/video/schedule-video-update'

export type MScheduleVideoUpdate = Omit<ScheduleVideoUpdateModel, 'Video'>

// ############################################################################

// Format for API or AP object

export type MScheduleVideoUpdateFormattable = Pick<MScheduleVideoUpdate, 'updateAt' | 'privacy'>