UNPKG

lml-main

Version:

This is now a mono repository published into many standalone packages.

9 lines (8 loc) 295 B
import * as Actions from '../actions'; import { JobFlowModel } from '@lml/cosmo-ts-data'; export interface JobsFlowState { byId: { [refId: string]: JobFlowModel; }; } export declare const jobFlowReducer: (state: JobsFlowState, action: Actions.SetJobFlowAction) => JobsFlowState;