7 lines
380 B
TypeScript
7 lines
380 B
TypeScript
import { IWithLazyVideoPlayerProps } from "../with-lazy";
|
|
export interface IWithLoadingVideoPlayerProps extends IWithLazyVideoPlayerProps {
|
|
withLoading?: boolean;
|
|
}
|
|
declare const WithLoading: ({ withLoading, onReady, children, ...props }: IWithLoadingVideoPlayerProps) => import("react/jsx-runtime").JSX.Element;
|
|
export default WithLoading;
|
|
//# sourceMappingURL=index.d.ts.map
|