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.

32 lines (30 loc) 1.07 kB
import {PKMediaSourceObject} from './media-source'; import {PKExternalCaptionObject} from './external-caption-object'; import {PKExternalThumbnailsConfig} from './exteranl-thumbnails-object'; import {PKMediaSourceOptionsObject} from './media-source-options'; import {PKMetadataConfigObject} from './metadata-config'; import {ImageSourceOptions} from './image-player-options'; import {PKMediaTypes} from "./media-types"; export type PKSourcesConfigObject = { hls: Array<PKMediaSourceObject>, dash: Array<PKMediaSourceObject>, progressive: Array<PKMediaSourceObject>, image: Array<PKMediaSourceObject>, document: Array<PKMediaSourceObject>, captions?: Array<PKExternalCaptionObject>, thumbnails?: PKExternalThumbnailsConfig, options: PKMediaSourceOptionsObject, type: string, dvr: boolean, metadata: PKMetadataConfigObject, id?: string, poster?: string, duration?: number, startTime?: number, endTime?: number, vr?: any, imageSourceOptions?: ImageSourceOptions, seekFrom?: number, clipTo?: number, mediaEntryType?: PKMediaTypes };