(error: any)
| 14 | }; |
| 15 | |
| 16 | export const fetchRetrievalFailure = (error: any) => { |
| 17 | return { |
| 18 | type: 'FETCH_RETRIEVAL_FAILURE', |
| 19 | payload: error, |
| 20 | }; |
| 21 | }; |
| 22 | export const fetchRetrievalRequest = () => { |
| 23 | return { |
| 24 | type: 'FETCH_RETRIEVAL_REQUEST', |
no outgoing calls
no test coverage detected