verificator
Version:
Client and server-side validation JavaScript library
16 lines (12 loc) • 353 B
text/typescript
import { ADD_ERROR, REMOVE_ERROR, CLEAR_ERRORS } from '../constants/types'
export const addError = (key: string, message: string) => ({
type: ADD_ERROR,
payload: { key, message },
})
export const removeError = (key: string) => ({
type: REMOVE_ERROR,
payload: { key },
})
export const clearErrors = () => ({
type: CLEAR_ERRORS,
})