-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f46d562
commit d1f2150
Showing
5 changed files
with
60 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,9 @@ | ||
export { default as solace } from 'solclientjs/lib-browser/solclient'; | ||
export { default as Session } from './session'; | ||
export { default as PublishSubscribe } from './publishSubscribe'; | ||
export { default as Queue } from './queue'; | ||
export { default as Request } from './request'; | ||
export { default as Event } from './event'; | ||
|
||
|
||
export { default as createSolaceMiddleware } from './middleware'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,16 @@ | ||
import * as actionTypes from './types' | ||
import * as actions from './actions' | ||
import * as asyncs from './async'; | ||
import * as actionsCreators from './actions' | ||
import * as asyncsRefs from './async'; | ||
|
||
|
||
export const actions = { | ||
...actionTypes, | ||
...actionsCreators, | ||
}; | ||
|
||
export const asyncs = asyncsRefs; | ||
|
||
export default { | ||
actions:{ | ||
...actionTypes, | ||
...actions, | ||
}, | ||
asyncs | ||
actions, | ||
asyncs, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import * as actionTypes from './types' | ||
import * as actionsCreators from './actions' | ||
import * as asyncsRefs from './async'; | ||
|
||
|
||
export const actions = { | ||
...actionTypes, | ||
...actionsCreators, | ||
}; | ||
|
||
export const asyncs = asyncsRefs; | ||
|
||
export default { | ||
actions, | ||
asyncs, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,16 @@ | ||
import * as actionTypes from './types' | ||
import * as actions from './actions' | ||
import * as asyncs from './async'; | ||
import * as actionsCreators from './actions' | ||
import * as asyncsRefs from './async'; | ||
|
||
|
||
export const actions = { | ||
...actionTypes, | ||
...actionsCreators, | ||
}; | ||
|
||
export const asyncs = asyncsRefs; | ||
|
||
export default { | ||
actions:{ | ||
...actionTypes, | ||
...actions, | ||
}, | ||
asyncs | ||
actions, | ||
asyncs, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,16 @@ | ||
import * as actionTypes from './types' | ||
import * as actions from './actions' | ||
import * as asyncs from './async'; | ||
import * as actionsCreators from './actions' | ||
import * as asyncsRefs from './async'; | ||
|
||
|
||
export const actions = { | ||
...actionTypes, | ||
...actionsCreators, | ||
}; | ||
|
||
export const asyncs = asyncsRefs; | ||
|
||
export default { | ||
actions:{ | ||
...actionTypes, | ||
...actions, | ||
}, | ||
asyncs | ||
actions, | ||
asyncs, | ||
} |