lml-main
Version:
This is now a mono repository published into many standalone packages.
15 lines (14 loc) • 519 B
TypeScript
import { AnyAction } from 'redux';
import { AllocationDataState } from './data';
import { AutoAllocationState } from './auto';
import { AllocationTagState } from './tag';
export declare const ALLOCATION_API_REDUCER_KEY = "allocations";
export * from './data';
export * from './auto';
export * from './tag';
export interface AllocationApiState {
data: AllocationDataState;
auto: AutoAllocationState;
tag: AllocationTagState;
}
export declare const allocationApiReducer: (state: {}, action: AnyAction) => {};