Skip to content

Commit

Permalink
refactor: Use numeric internal event names
Browse files Browse the repository at this point in the history
  • Loading branch information
Alorel committed Sep 26, 2020
1 parent 54a24fd commit b35b0f1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions projects/core/common/ReduxOMTEvent.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/** @internal */
export const enum ReduxOMTEvent { // eslint-disable-line no-shadow
ACTION_PROCESSED = 'romt:action-processed',
ACTION_DISPATCHED = 'romt:dispatched',
INITIAL_STATE = 'romt:initial-state',
READY = 'romt:ready',
INITIAL_STATE_REQUEST = 'romt:rq-initial-state'
ACTION_PROCESSED,
ACTION_DISPATCHED,
INITIAL_STATE,
READY,
INITIAL_STATE_REQUEST
}

0 comments on commit b35b0f1

Please sign in to comment.