diff options
author | Chocobozzz <me@florianbigard.com> | 2019-08-15 11:53:26 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2019-08-19 17:26:35 +0200 |
commit | 453e83ea5d81d203ba34bc43cd5c2c750ba40568 (patch) | |
tree | 604e02f4343d13a4ba42e1fb7527ba6ab9111712 /server/typings/models/video/video-share.ts | |
parent | 13176a07a95984a53cc59aec5217f2ce9806d1bc (diff) | |
download | PeerTube-453e83ea5d81d203ba34bc43cd5c2c750ba40568.tar.gz PeerTube-453e83ea5d81d203ba34bc43cd5c2c750ba40568.tar.zst PeerTube-453e83ea5d81d203ba34bc43cd5c2c750ba40568.zip |
Stronger model typings
Diffstat (limited to 'server/typings/models/video/video-share.ts')
-rw-r--r-- | server/typings/models/video/video-share.ts | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/server/typings/models/video/video-share.ts b/server/typings/models/video/video-share.ts new file mode 100644 index 000000000..7e8cb8b61 --- /dev/null +++ b/server/typings/models/video/video-share.ts | |||
@@ -0,0 +1,12 @@ | |||
1 | import { VideoShareModel } from '../../../models/video/video-share' | ||
2 | import { PickWith } from '../../utils' | ||
3 | import { MActorDefault } from '../account' | ||
4 | import { MVideo } from './video' | ||
5 | |||
6 | export type MVideoShare = Omit<VideoShareModel, 'Actor' | 'Video'> | ||
7 | |||
8 | export type MVideoShareActor = MVideoShare & | ||
9 | PickWith<VideoShareModel, 'Actor', MActorDefault> | ||
10 | |||
11 | export type MVideoShareFull = MVideoShareActor & | ||
12 | PickWith<VideoShareModel, 'Video', MVideo> | ||