UNPKG

pxt-core

Version:

Microsoft MakeCode provides Blocks / JavaScript / Python tools and editors

10 lines (9 loc) 289 B
/// <reference types="react" /> import { ControlProps } from "../util"; export interface LazyImageProps extends ControlProps { src: string; alt: string; title?: string; loadingElement?: JSX.Element; } export declare const LazyImage: (props: LazyImageProps) => JSX.Element;