We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9e46f2 commit d65cd41Copy full SHA for d65cd41
index.d.ts
@@ -1 +1 @@
1
-import './src/models'
+export * from './src/types'
index.js
-require('./dist/index.js')
+export * from './dist'
package.json
@@ -1,6 +1,6 @@
{
2
"name": "redux-api-utility-library",
3
- "version": "1.0.3",
+ "version": "1.0.4",
4
"description": "A utility library for handling API Requests and Async Actions with Redux",
5
"main": "index.js",
6
"scripts": {
src/index.ts
@@ -1,2 +1,4 @@
-import './middleware'
-import './reducers'
+export * from './actions'
+export * from './middleware'
+export * from './reducers'
+export * from './utils'
0 commit comments