UNPKG

@vime/react

Version:

React bindings for the Vime media player.

8 lines (7 loc) 412 B
import React, { ReactNode, HTMLAttributes } from 'react'; import type { JSX } from '@vime/core/dist/types'; export interface LoadingScreenProps extends JSX.VmLoadingScreen, HTMLAttributes<HTMLVmLoadingScreenElement> { children?: ReactNode | ReactNode[]; } declare const _default: React.ForwardRefExoticComponent<LoadingScreenProps & React.RefAttributes<HTMLVmLoadingScreenElement>>; export default _default;