-
-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(effects): change the signature of provideEffect (#3587)
BREAKING CHANGE: The signature of `provideEffects` is changed to expect a spreaded array of effects. BEFORE: `provideEffects` expecteded the effects to be passed as an array. ```ts // single effect provideEffects([MyEffect]) // multiple effects provideEffects([MyEffect, MySecondEffect]) ```ts AFTER: `provideEffects` expects the effects as a spreaded array as argument. ```ts // single effect provideEffects(MyEffect) // multiple effects provideEffects(MyEffect, MySecondEffect) ```ts
- Loading branch information
1 parent
8636734
commit 899afe7
Showing
3 changed files
with
14 additions
and
12 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
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
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