aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/types/models/video/schedule-video-update.ts
blob: 39fd7350186075da77f5046f6a5e50958c8ac490 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
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'>