UNPKG

mext-types

Version:

20 lines (17 loc) 386 B
import { AComponentType } from './component'; export interface IinitState { mext: { [key: string]: any; }; MextException?: IMextException; } export interface IMextException { ErrorComponent?: AComponentType; status?: string | number; message?: string | null; stack?: string | null; info?: Object; url?: string | null; routerError?: boolean; data?: Object; }