You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
main
${ noResults }
12 lines
361 B
TypeScript
12 lines
361 B
TypeScript
import { LiveVideoLatencyMode } from '@peertube/peertube-models'
|
|||
|
|||
function isLiveLatencyModeValid (value: any) {
|
|||
return [ LiveVideoLatencyMode.DEFAULT, LiveVideoLatencyMode.SMALL_LATENCY, LiveVideoLatencyMode.HIGH_LATENCY ].includes(value)
|
|||
}
|
|||
|
|||
// ---------------------------------------------------------------------------
|
|||
|
|||
export {
|
|||
isLiveLatencyModeValid
|
|||
}
|