lark-cms
Version:
Multi terminal CMS component library
24 lines (23 loc) • 860 B
TypeScript
import React from "react";
type Props = {
myRef?: any;
navigation?: any;
headerElement?: any;
showBack?: boolean;
defaultFullscreen?: boolean;
showFullscreen?: boolean;
showMute?: boolean;
isShouldPlay?: boolean;
showMoreMenu?: boolean;
moreMenuElement?: any;
isCacheFile?: boolean;
sourceSize?: number;
sourceAsset: string;
thumbnail?: string;
videoWidth?: number;
videoHeight?: number;
commonCallback?: Function;
loadingWaitTips?: string;
};
declare const YhwViewVideoPlayer: ({ myRef, navigation, headerElement, showBack, defaultFullscreen, showFullscreen, showMute, isShouldPlay, showMoreMenu, moreMenuElement, isCacheFile, sourceSize, sourceAsset, thumbnail, videoWidth, videoHeight, commonCallback, loadingWaitTips }: Props) => React.JSX.Element;
export default YhwViewVideoPlayer;