UNPKG

lml-main

Version:

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

12 lines (11 loc) 441 B
import * as Actions from '../actions'; import { JobIncidentModel } from '@lml/cosmo-ts-data'; import { JobIncidentOption } from '../interfaces'; export interface JobsIncidentState { impacts: JobIncidentOption[]; reasons: JobIncidentOption[]; data: { [refId: string]: JobIncidentModel[]; }; } export declare const jobIncidentReducer: (state: JobsIncidentState, action: Actions.JobIncidentAction) => JobsIncidentState;