UNPKG

@masa-dev/react-signage

Version:

This is a react library for signage.

10 lines (9 loc) 319 B
import { MediaItemRefBase } from './types'; type Props = { useDbCache?: boolean; }; export interface ImgRef extends MediaItemRefBase { elementRef: React.RefObject<HTMLImageElement>; } export declare const Img: import("react").ForwardRefExoticComponent<Props & import("react").RefAttributes<ImgRef>>; export {};