lml-main
Version:
This is now a mono repository published into many standalone packages.
7 lines (6 loc) • 324 B
TypeScript
import * as Actions from '../actions';
export interface JobsSmartMatchesState {
[refId: string]: string[];
}
export declare const initialSmartMatchesState: JobsSmartMatchesState;
export declare const jobSmartMatchesReducer: (state: JobsSmartMatchesState, action: Actions.JobSmartMatchesAction) => JobsSmartMatchesState;