memento-dev/app-old/data/snippets/react/reducer/reducer-actions-enum.ts

7 lines
129 B
TypeScript

export const enum CounterActionTypes {
INCREMENT = "INCREMENT",
DECREMENT = "DECREMENT",
RESET = "RESET",
SET = "SET",
}