/** * @file Container组件的Reducer * @author dongtiancheng */ import { Reducer } from 'redux'; export declare const TMP_MODEL = "__TMP_MODEL__DO_NO_USE_IT"; export declare type IContainerState = { [key: string]: any; }; export declare let containerInitState: IContainerState; export declare const containerReducer: Reducer;