UNPKG

react-application-core

Version:

A react-based application core for the business applications.

20 lines (19 loc) 580 B
import { ICodeWrapper, ICustomErrorWrapper, IErrorWrapper, IMessageWrapper } from '../definitions.interface'; /** * @stable [07.10.2019] */ export declare enum ErrorEventCategoriesEnum { REACT_ERROR = "react:error", WINDOW_ERROR = "window:error" } /** * @stable [04.02.2019] */ export interface IErrorEntity<TError = boolean, TCustomError = boolean> extends IErrorWrapper<TError>, ICustomErrorWrapper<TCustomError> { } /** * @entity * @stable [12.04.2020] */ export interface IErrorMessageEntity extends ICodeWrapper<number>, IMessageWrapper { }