Create an action type with _ADD_FIRST suffix
Main name of an action type
Full action type name concating with the suffix
const type = actionTypeMaker.PENDING('FETCH_PROFILE');
console.log(type); // FETCH_PROFILE_ADD_FIRST
Create an action type with _ADD_LAST suffix
Main name of an action type
Full action type name concating with the suffix
const type = actionTypeMaker.PENDING('FETCH_PROFILE');
console.log(type); // FETCH_PROFILE_ADD_LAST
Create an action type with _CANCEL suffix
Main name of an action type
Full action type name concating with the suffix
const type = actionTypeMaker.PENDING('FETCH_PROFILE');
console.log(type); // FETCH_PROFILE_CANCEL
Create an action type with _FAIL suffix
Main name of an action type
Full action type name concating with the suffix
const type = actionTypeMaker.PENDING('FETCH_PROFILE');
console.log(type); // FETCH_PROFILE_FAIL
Create an action type with _PENDING suffix
Main name of an action type
Full action type name concating with the suffix
const type = actionTypeMaker.PENDING('FETCH_PROFILE');
console.log(type); // FETCH_PROFILE_PENDING
Create an action type with _REMOVE suffix
Main name of an action type
Full action type name concating with the suffix
const type = actionTypeMaker.PENDING('FETCH_PROFILE');
console.log(type); // FETCH_PROFILE_REMOVE
Create an action type with _REPLACE suffix
Main name of an action type
Full action type name concating with the suffix
const type = actionTypeMaker.PENDING('FETCH_PROFILE');
console.log(type); // FETCH_PROFILE_REPLACE
Create an action type with _RESET suffix
Main name of an action type
Full action type name concating with the suffix
const type = actionTypeMaker.PENDING('FETCH_PROFILE');
console.log(type); // FETCH_PROFILE_RESET
Create an action type with _SUCCESS suffix
Main name of an action type
Full action type name concating with the suffix
const type = actionTypeMaker.PENDING('FETCH_PROFILE');
console.log(type); // FETCH_PROFILE_SUCCESS
Create an action type with _UPDATE suffix
Main name of an action type
Full action type name concating with the suffix
const type = actionTypeMaker.PENDING('FETCH_PROFILE');
console.log(type); // FETCH_PROFILE_UPDATE
Main name of an action type
Generated using TypeDoc
Action type name maker