accelerator-core
Version:
[](https://travis-ci.org/furkleindustries/accelerator-core)
29 lines (27 loc) • 672 B
text/typescript
import {
IAction,
} from '../../actions/IAction';
import {
IPassagesMap,
} from '../../passages/IPassagesMap';
import {
IPlugin,
} from '../../plugins/IPlugin';
import {
IState,
} from '../../state/IState';
import {
MaybeReadonlyArray,
} from '../../typeAliases/MaybeReadonlyArray';
import {
ReactNodeWithoutNullOrUndefined,
} from '../../typeAliases/ReactNodeWithoutNullOrUndefined';
import {
Store,
} from 'redux';
export interface IPassagePluginsWrapperOwnProps {
readonly children: ReactNodeWithoutNullOrUndefined;
readonly passagesMap: IPassagesMap;
readonly plugins: MaybeReadonlyArray<IPlugin>;
readonly reduxStore: Store<IState, IAction>;
}