-
Updated
Oct 16, 2020 - JavaScript
reducer
Here are 364 public repositories matching this topic...
-
Updated
Oct 3, 2020 - TypeScript
-
Updated
Oct 18, 2020 - TypeScript
-
Updated
Nov 8, 2017 - TypeScript
-
Updated
Jul 16, 2020 - JavaScript
Example Apps
Also for iPad.
This should fail because otherNum is not part of the State interface:
interface State {
num: number
}
export const initialState: State = {
num: 0
};
export const appsReducer = createReducer(initialState, handleAction => [
handleAction(actions.getApps.success, () => ({
num: 0,
otherNum: 0 // adding this property should trigger a warning
})),
]);-
Updated
Feb 11, 2019 - JavaScript
-
Updated
Jul 17, 2020 - JavaScript
-
Updated
Nov 17, 2018 - JavaScript
-
Updated
Feb 21, 2018 - JavaScript
-
Updated
Jul 18, 2018 - JavaScript
-
Updated
Sep 9, 2020 - JavaScript
-
Updated
Jul 21, 2020 - JavaScript
-
Updated
Oct 17, 2020 - JavaScript
-
Updated
May 21, 2020 - Kotlin
-
Updated
Sep 19, 2020 - TypeScript
-
Updated
Sep 18, 2020 - TypeScript
-
Updated
Apr 17, 2019 - JavaScript
-
Updated
Oct 16, 2020 - Shell
Improve this page
Add a description, image, and links to the reducer topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the reducer topic, visit your repo's landing page and select "manage topics."
what is prefer way to add relation and remove relation? I found example as below, but I did't find any document about the two methods.