UNPKG

453 BTypeScriptView Raw
1import LeafStandardAction from './types/Actions/LSA';
2import Dict from './types/Dict';
3import { Reducer } from 'redux';
4import ActionsProxy from './actions/proxy';
5import LeafCompoundAction from './types/Actions/LCA';
6import FluxStandardAction from './types/Actions/FSA';
7export declare const reduxLeaves: <T = Dict<any>>(initialState: T, reducersDict?: {}) => [Reducer<any, FluxStandardAction | LeafStandardAction | LeafCompoundAction>, ActionsProxy];