MCPcopy Index your code
hub / github.com/cookpete/react-player / VideoHTMLAttributes

Interface VideoHTMLAttributes

src/types.ts:9–18  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7import type TikTokVideoElement from 'tiktok-video-element';
8
9interface VideoHTMLAttributes<T> extends MediaHTMLAttributes<T> {
10 height?: number | string | undefined;
11 playsInline?: boolean | undefined;
12 poster?: string | undefined;
13 width?: number | string | undefined;
14 disablePictureInPicture?: boolean | undefined;
15 disableRemotePlayback?: boolean | undefined;
16 onEnterPictureInPicture?: ((this: HTMLVideoElement, ev: Event) => void) | undefined;
17 onLeavePictureInPicture?: ((this: HTMLVideoElement, ev: Event) => void) | undefined;
18}
19
20export interface VideoElementProps
21 extends React.DetailedHTMLProps<VideoHTMLAttributes<HTMLVideoElement>, HTMLVideoElement> {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…