aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/typings/models/video/video-rate.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server/typings/models/video/video-rate.ts')
-rw-r--r--server/typings/models/video/video-rate.ts27
1 files changed, 0 insertions, 27 deletions
diff --git a/server/typings/models/video/video-rate.ts b/server/typings/models/video/video-rate.ts
deleted file mode 100644
index 64ce4965b..000000000
--- a/server/typings/models/video/video-rate.ts
+++ /dev/null
@@ -1,27 +0,0 @@
1import { AccountVideoRateModel } from '@server/models/account/account-video-rate'
2import { PickWith } from '@server/typings/utils'
3import { MAccountAudience, MAccountUrl } from '../account/account'
4import { MVideo, MVideoFormattable } from './video'
5
6type Use<K extends keyof AccountVideoRateModel, M> = PickWith<AccountVideoRateModel, K, M>
7
8// ############################################################################
9
10export type MAccountVideoRate = Omit<AccountVideoRateModel, 'Video' | 'Account'>
11
12export type MAccountVideoRateAccountUrl =
13 MAccountVideoRate &
14 Use<'Account', MAccountUrl>
15
16export type MAccountVideoRateAccountVideo =
17 MAccountVideoRate &
18 Use<'Account', MAccountAudience> &
19 Use<'Video', MVideo>
20
21// ############################################################################
22
23// Format for API or AP object
24
25export type MAccountVideoRateFormattable =
26 Pick<MAccountVideoRate, 'type'> &
27 Use<'Video', MVideoFormattable>