]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - schedule-video-update.ts
39fd7350186075da77f5046f6a5e50958c8ac490
[github/Chocobozzz/PeerTube.git] / schedule-video-update.ts
1 import { ScheduleVideoUpdateModel } from '../../../models/video/schedule-video-update'
2
3 // ############################################################################
4
5 export type MScheduleVideoUpdate = Omit<ScheduleVideoUpdateModel, 'Video'>
6
7 // ############################################################################
8
9 // Format for API or AP object
10
11 export type MScheduleVideoUpdateFormattable = Pick<MScheduleVideoUpdate, 'updateAt' | 'privacy'>