aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/types/models/video/video-live-session.ts
blob: 2e5e4b68467ae8b091890d9affb477a7c413951d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { VideoLiveSessionModel } from '@server/models/video/video-live-session'
import { PickWith } from '@shared/typescript-utils'
import { MVideo } from './video'

type Use<K extends keyof VideoLiveSessionModel, M> = PickWith<VideoLiveSessionModel, K, M>

// ############################################################################

export type MVideoLiveSession = Omit<VideoLiveSessionModel, 'Video' | 'VideoLive'>

// ############################################################################

export type MVideoLiveSessionReplay =
  MVideoLiveSession &
  Use<'ReplayVideo', MVideo>