You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

updatePatternActionConstants.js 369B

1234567891011
  1. import {
  2. createFetchType,
  3. createSuccessType,
  4. createErrorType,
  5. } from "../actionHelpers";
  6. const UPDATE_PATTERN_SCOPE = "UPDATE_PATTERN";
  7. export const UPDATE_PATTERN_REQ = createFetchType(UPDATE_PATTERN_SCOPE);
  8. export const UPDATE_PATTERN_ERR = createErrorType(UPDATE_PATTERN_SCOPE);
  9. export const UPDATE_PATTERN_SUCCESS = createSuccessType(UPDATE_PATTERN_SCOPE);