public/js/actions/SearchSuggestionsActions/cancel.js (11 lines of code) (raw):

function cancelRequest(id) { return { type: 'SEARCH_SUGGESTIONS_CANCEL', id }; } export function cancel(id) { return dispatch => { dispatch(cancelRequest(id)); }; }