Remove uneccessary details to link titles
[oweals/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 =
13   MAccountVideoRate &
14   Use<'Account', MAccountUrl>
15
16 export type MAccountVideoRateAccountVideo =
17   MAccountVideoRate &
18   Use<'Account', MAccountAudience> &
19   Use<'Video', MVideo>
20
21 // ############################################################################
22
23 // Format for API or AP object
24
25 export type MAccountVideoRateFormattable =
26   Pick<MAccountVideoRate, 'type'> &
27   Use<'Video', MVideoFormattable>