UNPKG

spectatr-player-sdk

Version:

A custom video player built with Stencil with Shaka Player integration

11 lines (10 loc) 408 B
import { Poll } from '../../types/videoPlayer'; interface PollsNotificationProps { showPoll: boolean; polls: Poll[]; currentTime: number; onClick: (poll: Poll, polls: Poll[]) => void; quizPosition: 'top-left' | 'top-center' | 'top-right' | null; } export declare const PollNotification: ({ showPoll, polls, currentTime, onClick, quizPosition }: PollsNotificationProps) => any; export {};