UNPKG

magic-img

Version:

让你的图片加载更加优雅

27 lines (23 loc) 606 B
import { DetailedHTMLProps, HTMLAttributes } from 'react'; type Magic = { initial: boolean; width: number; height: number; src: string; content: string; svg: SVGSVGElement; img: HTMLImageElement; smallImg: HTMLImageElement; }; declare function install(): void; declare global { interface HTMLElementTagNameMap { "magic-img": HTMLDivElement & Partial<Magic> } namespace JSX { interface IntrinsicElements { "magic-img": DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement> & Partial<Magic>; } } } export { install as default };