Skip to content

Commit

Permalink
export string constants (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
zepatrik authored and aeneasr committed Jan 22, 2019
1 parent c62d44a commit 20ab178
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 15 deletions.
44 changes: 32 additions & 12 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -134,9 +134,9 @@ const createWatchers = (registry: Registry) =>
})(action, worker, takeStrategy)
})

const STATE_FETCHING = 'FETCHING'
const STATE_SUCCESS = 'SUCCESS'
const STATE_FAILURE = 'FAILURE'
export const STATE_FETCHING = 'FETCHING'
export const STATE_SUCCESS = 'SUCCESS'
export const STATE_FAILURE = 'FAILURE'

interface Payload {
response?: any
Expand Down

0 comments on commit 20ab178

Please sign in to comment.