UNPKG

media-stream-player

Version:

Player built on top of media-stream-library

11 lines (10 loc) 349 B
import React from 'react'; import { VideoProperties } from './PlaybackArea'; interface StillImageProps { readonly forwardedRef?: React.Ref<HTMLImageElement>; readonly play?: boolean; readonly src?: string; readonly onPlaying: (props: VideoProperties) => void; } export declare const StillImage: React.FC<StillImageProps>; export {};