UNPKG

ih-black-lion

Version:

State handler for Arus projects

11 lines (8 loc) 320 B
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 }; }