]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/typings/models/video/video-rate.ts
Add ability to disable webtorrent
[github/Chocobozzz/PeerTube.git] / server / typings / models / video / video-rate.ts
1 import { AccountVideoRateModel } from '@server/models/account/account-video-rate'
2 import { PickWith } from '@server/typings/utils'
3 import { MAccountAudience, MAccountUrl } from '../account/account'
4 import { MVideo, MVideoFormattable } from './video'
5
6 type Use<K extends keyof AccountVideoRateModel, M> = PickWith<AccountVideoRateModel, K, M>
7
8 // ############################################################################
9
10 export type MAccountVideoRate = Omit<AccountVideoRateModel, 'Video' | 'Account'>
11
12 export type MAccountVideoRateAccountUrl = MAccountVideoRate &
13 Use<'Account', MAccountUrl>
14
15 export type MAccountVideoRateAccountVideo = MAccountVideoRate &
16 Use<'Account', MAccountAudience> &
17 Use<'Video', MVideo>
18
19 // ############################################################################
20
21 // Format for API or AP object
22
23 export type MAccountVideoRateFormattable = Pick<MAccountVideoRate, 'type'> &
24 Use<'Video', MVideoFormattable>