fabric8-planner
Version:
A planner front-end for Fabric8.
6 lines (5 loc) • 321 B
TypeScript
import { ActionReducer } from '@ngrx/store';
import * as WorkItemLinkActions from './../actions/work-item-link.actions';
import { WorkItemLinkState } from './../states/work-item-link.state';
export declare type Action = WorkItemLinkActions.All;
export declare const WorkItemLinkReducer: ActionReducer<WorkItemLinkState>;