UNPKG

@playkit-js/playkit-js

Version:

[![Build Status](https://github.com/kaltura/playkit-js/actions/workflows/run_canary.yaml/badge.svg)](https://github.com/kaltura/playkit-js/actions/workflows/run_canary.yaml) [![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.

26 lines (24 loc) 805 B
import {PKAutoPlayTypes} from './auto-play-types'; import {PKStreamPriorityObject} from './stream-priority'; import {PKPreferNativeConfigObject} from './prefer-native-config'; export type PKPlaybackConfigObject = { audioLanguage: string, textLanguage: string, captionsDisplay: boolean, additionalAudioLanguage: string | [string], additionalTextLanguage: string | [string], volume: number, playsinline: boolean, crossOrigin: string, preload: string, autoplay: PKAutoPlayTypes, allowMutedAutoPlay: boolean, updateAudioDescriptionLabels: boolean, muted: boolean, pictureInPicture: boolean, streamPriority: Array<PKStreamPriorityObject>, preferNative: PKPreferNativeConfigObject, inBrowserFullscreen: boolean, playAdsWithMSE: boolean, screenLockOrientionMode: string };