fabric8-planner
Version:
A planner front-end for Fabric8.
6 lines (5 loc) • 310 B
TypeScript
import { ActionReducer } from '@ngrx/store';
import { CustomQueryState } from '../states/custom-query.state';
import * as CustomQueryActions from './../actions/custom-query.actions';
export declare type Action = CustomQueryActions.All;
export declare const CustomQueryReducer: ActionReducer<CustomQueryState>;