lml-main
Version:
This is now a mono repository published into many standalone packages.
10 lines (9 loc) • 399 B
TypeScript
import * as Actions from '../actions';
import { AllocationModel } from '@lml/cosmo-ts-data';
export interface AllocationTagState {
byJobId: {
[jobRefId: string]: AllocationModel;
};
}
export declare const initialAllocationTagState: AllocationTagState;
export declare const allocationTagReducer: (state: AllocationTagState, action: Actions.AllocationTagAction) => AllocationTagState;