UNPKG

@wscsports/blaze-rtn-sdk

Version:
14 lines 505 B
import { BlazePlayerType } from '../interfaces/common.interface'; export interface BlazePipDelegate { onPiPStateChanged?: (params: BlazePipStateChangedParams) => void; } export interface BlazePipStateChangedParams { playerType: BlazePlayerType; sourceId?: string; state: 'on' | 'off'; } export declare class BlazePipDelegateHelper { static registerPipDelegate(delegate?: BlazePipDelegate | null): void; private static onPiPStateChanged; } //# sourceMappingURL=pip-delegate.d.ts.map