UNPKG

@tdb/web

Version:

Common condiguration for serving a web-site and testing web-based UI components.

8 lines (7 loc) 187 B
/// <reference types="react" /> export interface IImageProps { url: string; width?: number; title?: string; } export declare const Image: (props: IImageProps) => JSX.Element;