Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/ui-presets / dist / presets / Studio / Video / Video.d.ts
Size: Mime:
import React from 'react';
import { VideoPresetProps } from './typings';
import { VideoState } from './VideoState';
import { defaultRenderControls, defaultRenderVideo } from './renderProps';
declare class Video extends React.Component<VideoPresetProps> {
    static defaultProps: {
        src: string[];
        title: string;
        slogan: string;
        shareTitle: string;
        videoLength: string;
        shouldShowVideoInformation: boolean;
        hasPlayButton: boolean;
        renderVideo: typeof defaultRenderVideo;
        renderControls: typeof defaultRenderControls;
    };
    observableState: import("./typings").VideoPresetStateType | VideoState;
    componentWillMount(): void;
    render(): JSX.Element;
}
export { Video };
export default Video;