UNPKG

@gpa-gemstone/common-pages

Version:
19 lines (18 loc) 459 B
import * as React from 'react'; interface IError { name: string; message: string; } interface IProps { HeaderErrorMessage: string; BodyErrorMessage: string; Height: number | string; Width: number | string; ErrorIconSize?: number; } export default class ErrorBoundary extends React.Component<IProps, IError> { constructor(props: IProps); componentDidCatch(error: IError): void; render(): React.JSX.Element; } export {};