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