UNPKG

mext-types

Version:

17 lines (15 loc) 291 B
export interface Imodel { reducers: any; effects: any; state: any; namespace: string; initPage?: Function | undefined; _handleInitPage?: boolean; } export interface Model { namespace: string; state?: any; reducers?: object; effects?: object; subscriptions?: object; }