We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If you use a plugin such as the bgio-effects plugin then the TurnOrder definitions are not compatible when using Typescript.
bgio-effects
TurnOrder
So a turn description which includes:
turn: { order: TurnOrder.ONCE, },
will not compile.
This is similar to issue #1050
The work around I found was to use:
turn: { order: TurnOrder.ONCE as unknown as TurnOrderConfig< State, EffectsCtxMixin<typeof EffectsConfig> >, },
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If you use a plugin such as the
bgio-effects
plugin then theTurnOrder
definitions are not compatible when using Typescript.So a turn description which includes:
will not compile.
This is similar to issue #1050
The work around I found was to use:
The text was updated successfully, but these errors were encountered: