Repository URL to install this package:
|
Version:
2.1.16 ▾
|
import { VideoPresetProps } from './typings';
declare class VideoState {
isPlaying: boolean;
hasBeenPlayedAtLeastOnce: boolean;
shouldAutoPlay: boolean;
hasNativeControls: boolean;
constructor(props: VideoPresetProps);
setIsPlaying(isPlaying: boolean): void;
toggleIsPlaying(): void;
setProps(props: VideoPresetProps): void;
}
export { VideoState };
export default VideoState;