next-video
Version:
A React component for adding video to your Next.js application. It extends both the video element and your Next app with features for automatic video optimization.
7 lines (6 loc) • 355 B
TypeScript
import type { MediaProps } from './media/index.js';
import type { PlayerProps, CSSPropertiesWithVars } from '../types.js';
declare const DefaultPlayer: import("react").ForwardRefExoticComponent<Omit<MediaProps, "ref"> & PlayerProps & {
style?: CSSPropertiesWithVars;
} & import("react").RefAttributes<HTMLVideoElement>>;
export default DefaultPlayer;