blob: 2ff8a625b9598f8412cb86ac6963c78a2141921f (
plain) (
tree)
|
|
import { AccountVideoRateModel } from '@server/models/account/account-video-rate'
import { PickWith } from '@server/typings/utils'
import { MAccountAudience, MAccountUrl, MVideo, MVideoFormattable } from '..'
type Use<K extends keyof AccountVideoRateModel, M> = PickWith<AccountVideoRateModel, K, M>
// ############################################################################
export type MAccountVideoRate = Omit<AccountVideoRateModel, 'Video' | 'Account'>
export type MAccountVideoRateAccountUrl = MAccountVideoRate &
Use<'Account', MAccountUrl>
export type MAccountVideoRateAccountVideo = MAccountVideoRate &
Use<'Account', MAccountAudience> &
Use<'Video', MVideo>
// ############################################################################
// Format for API or AP object
export type MAccountVideoRateFormattable = Pick<MAccountVideoRate, 'type'> &
Use<'Video', MVideoFormattable>
|