]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/types/models/video/schedule-video-update.ts
Refactor schedule update
[github/Chocobozzz/PeerTube.git] / server / types / models / video / 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'>