lml-main
Version:
This is now a mono repository published into many standalone packages.
11 lines (10 loc) • 350 B
TypeScript
import { AnyAction } from 'redux';
import { DraggingState } from './dragging';
import { AllocationTagState } from './tags';
export * from './dragging';
export * from './tags';
export interface AllocationState {
dragging: DraggingState;
tags: AllocationTagState;
}
export declare const allocationReducer: (state: {}, action: AnyAction) => {};