UNPKG

@docsvision/webclient

Version:

Type definitions for DocsVision WebClient scripts and extensions.

8 lines (6 loc) 230 B
import { MouseEventHandler } from 'react'; export interface IErrorBlockProps { text: string; close: MouseEventHandler<HTMLDivElement>; } export declare function ErrorBlock({ text, close }: IErrorBlockProps): JSX.Element;