react-smart-data-table
Version:
A smart data table component for React.js meant to be configuration free
12 lines (11 loc) • 358 B
TypeScript
declare enum TableAction {
FetchStart = "FETCH_START",
FetchSuccess = "FETCH_SUCCESS",
FetchError = "FETCH_ERROR",
SetSorting = "SET_SORTING",
SetActivePage = "SET_ACTIVE_PAGE",
ToggleColumn = "TOGGLE_COLUMN",
ToggleAllColumns = "TOGGLE_ALL_COLUMNS",
ResetPageForFilter = "RESET_PAGE_FOR_FILTER"
}
export default TableAction;