mext-types
Version:
20 lines (17 loc) • 386 B
text/typescript
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;
}