mirror of
https://github.com/zoriya/v10.git
synced 2026-08-16 02:45:09 +00:00
13 lines
591 B
TypeScript
13 lines
591 B
TypeScript
import { ReactNode, VideoHTMLAttributes } from "react";
|
|
import { DashMediaProps } from "@videojs/media/dom/dash";
|
|
//#region src/media/dash-video/media.d.ts
|
|
interface DashVideoProps extends Omit<VideoHTMLAttributes<HTMLVideoElement>, keyof DashMediaProps>, Partial<DashMediaProps> {
|
|
children?: ReactNode;
|
|
}
|
|
declare const DashVideo: import("react").ForwardRefExoticComponent<DashVideoProps & import("react").RefAttributes<HTMLVideoElement>>;
|
|
declare namespace DashVideo {
|
|
type Props = DashVideoProps;
|
|
}
|
|
//#endregion
|
|
export { DashVideo, DashVideoProps };
|
|
//# sourceMappingURL=media.d.ts.map
|