You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* See detailed documentation at https://github.com/reduxjs/redux-devtools/blob/%40redux-devtools/extension%403.2.1/extension/docs/API/Arguments.md#serialize
32
+
* - `undefined` - will use regular `JSON.stringify` to send data (it's the fast mode).
33
+
* - `false` - will handle also circular references.
34
+
* - `true` - will handle also date, regex, undefined, error objects, symbols, maps, sets and functions.
35
+
* - object, which contains `date`, `regex`, `undefined`, `error`, `symbol`, `map`, `set` and `function` keys.
36
+
* For each of them you can indicate if to include (by setting as `true`).
37
+
* For `function` key you can also specify a custom function which handles serialization.
38
+
* See [`jsan`](https://github.com/kolodny/jsan) for more details.
* *string or array of strings as regex* - actions types to be hidden / shown in the monitors (while passed to the reducers).
64
63
* If `actionsWhitelist` specified, `actionsBlacklist` is ignored.
64
+
* @deprecated Use actionsDenylist instead.
65
65
*/
66
66
actionsBlacklist?: string|string[]
67
67
/**
68
68
* *string or array of strings as regex* - actions types to be hidden / shown in the monitors (while passed to the reducers).
69
69
* If `actionsWhitelist` specified, `actionsBlacklist` is ignored.
70
+
* @deprecated Use actionsAllowlist instead.
70
71
*/
71
72
actionsWhitelist?: string|string[]
73
+
/**
74
+
* *string or array of strings as regex* - actions types to be hidden / shown in the monitors (while passed to the reducers).
75
+
* If `actionsAllowlist` specified, `actionsDenylist` is ignored.
76
+
*/
77
+
actionsDenylist?: string|string[]
78
+
/**
79
+
* *string or array of strings as regex* - actions types to be hidden / shown in the monitors (while passed to the reducers).
80
+
* If `actionsAllowlist` specified, `actionsDenylist` is ignored.
81
+
*/
82
+
actionsAllowlist?: string|string[]
72
83
/**
73
84
* called for every action before sending, takes `state` and `action` object, and returns `true` in case it allows sending the current data to the monitor.
74
-
* Use it as a more advanced version of `actionsBlacklist`/`actionsWhitelist` parameters.
85
+
* Use it as a more advanced version of `actionsDenylist`/`actionsAllowlist` parameters.
0 commit comments