mirror of
https://github.com/zoriya/v10.git
synced 2026-08-16 02:45:09 +00:00
10 lines
405 B
TypeScript
10 lines
405 B
TypeScript
import { VideoHTMLAttributes } from "react";
|
|
//#region src/media/video.d.ts
|
|
interface VideoProps extends VideoHTMLAttributes<HTMLVideoElement> {}
|
|
declare const Video: import("react").ForwardRefExoticComponent<VideoProps & import("react").RefAttributes<HTMLVideoElement>>;
|
|
declare namespace Video {
|
|
type Props = VideoProps;
|
|
}
|
|
//#endregion
|
|
export { Video, VideoProps };
|
|
//# sourceMappingURL=video.d.ts.map
|