diff --git a/libs/effects/src/index.ts b/libs/effects/src/index.ts index e4d2389..bcf5a80 100644 --- a/libs/effects/src/index.ts +++ b/libs/effects/src/index.ts @@ -13,7 +13,19 @@ export { ActionCreatorsAreNotAllowed, ErrorMessage, } from './lib/action-creator-is-not-allowed.type'; -export { action as createAction, props, payload } from 'ts-action'; +export { + action as createAction, + props, + payload, + Action, + ActionCreator, + ActionType, + Creator, + Typed, + NotTyped, + FunctionWithParametersType, + ParametersType, +} from 'ts-action'; export { ofType } from 'ts-action-operators'; export { actionsFactory } from './lib/actions.factory'; export { toPayload } from './lib/to-payload.operator';