9 lines
459 B
TypeScript
9 lines
459 B
TypeScript
import { ReactNode } from "react";
|
|
import { IWithLoadingVideoPlayerProps } from "../with-loader";
|
|
export interface IWithCoverVideoPlayerProps extends IWithLoadingVideoPlayerProps {
|
|
cover?: ReactNode | null;
|
|
forceHover?: boolean;
|
|
}
|
|
declare const WithCover: ({ cover, children, onReady, options, forceHover, ...props }: IWithCoverVideoPlayerProps) => import("react/jsx-runtime").JSX.Element;
|
|
export default WithCover;
|
|
//# sourceMappingURL=index.d.ts.map
|