We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f524f2 commit 3df4d93Copy full SHA for 3df4d93
npm-package/index.d.ts
@@ -154,6 +154,15 @@ export interface EnhancerOptions {
154
*/
155
test?: boolean;
156
};
157
+ /**
158
+ * Set to true or a stacktrace-returning function to record call stack traces for dispatched actions.
159
+ * Defaults to false.
160
+ */
161
+ trace?: boolean | (<A extends Action>(action: A) => string);
162
163
+ * The maximum number of stack trace entries to record per action. Defaults to 10.
164
165
+ traceLimit?: number;
166
}
167
168
export function composeWithDevTools<StoreExt, StateExt>(...funcs: Array<StoreEnhancer<StoreExt>>): StoreEnhancer<StoreExt>;
0 commit comments