UNPKG

addsearch-search-ui

Version:

JavaScript library to develop Search UIs for the web

15 lines (13 loc) 289 B
export const SET_FIELD_STATS = 'SET_FIELD_STATS'; export const CLEAR_FIELD_STATS = 'CLEAR_FIELD_STATS'; export function setFieldStats(json) { return { type: SET_FIELD_STATS, fieldStats: json } } export function clearFieldStats() { return { type: CLEAR_FIELD_STATS } }