UNPKG

react-native-theoplayer

Version:

A THEOplayer video component for react-native.

27 lines 782 B
import { SourceIntegrationId, TypedSource } from 'react-native-theoplayer'; import { WebrtcOptions } from './WebrtcOptions'; /** * Represents a source for the THEOlive integration. * * @category Source * @public */ export interface TheoLiveSource extends TypedSource { /** * @deprecated use {@link TypedSource.type} instead. */ integration: SourceIntegrationId.THEO_LIVE; /** * The content type. */ type: 'theolive'; /** * The profile identifier is included as a query parameter in the discovery request to obtain a response specific to that profile. */ profile?: string; /** * WebRTC configuration for a THEOlive Millicast source. */ webrtc?: WebrtcOptions; } //# sourceMappingURL=TheoLiveSource.d.ts.map