| 7 | import type TikTokVideoElement from 'tiktok-video-element'; |
| 8 | |
| 9 | interface 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 | |
| 20 | export interface VideoElementProps |
| 21 | extends React.DetailedHTMLProps<VideoHTMLAttributes<HTMLVideoElement>, HTMLVideoElement> { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…