| 1 2 3 4 5 6 7 8 9 10 11 | 2x 1x | import { REQUEST_CHECKLIST, SEARCH_CHECKLIST } from '../actionTypes';
import api from '../Api';
export function fetchChecklist(requestParams, Api = api) {
return { type: REQUEST_CHECKLIST, requestParams, Api };
}
export function searchChecklist(requestParams) {
return { type: SEARCH_CHECKLIST, requestParams };
}
|