UNPKG

468 BTypeScriptView Raw
1import { FractalStoreOptions } from './helpers';
2/**
3 * Modifies the behaviour of any `@select`, `@select$`, or `@dispatch`
4 * decorators to operate on a substore defined by the IFractalStoreOptions.
5 *
6 * See:
7 * https://github.com/angular-redux/platform/blob/master/packages/store/articles/fractal-store.md
8 * for more information about SubStores.
9 */
10export declare function WithSubStore({ basePathMethodName, localReducer, }: FractalStoreOptions): ClassDecorator;