diff --git a/npm-package/index.d.ts b/npm-package/index.d.ts index abc68df7..738b8706 100644 --- a/npm-package/index.d.ts +++ b/npm-package/index.d.ts @@ -154,6 +154,15 @@ export interface EnhancerOptions { */ test?: boolean; }; + /** + * Set to true or a stacktrace-returning function to record call stack traces for dispatched actions. + * Defaults to false. + */ + trace?: boolean | ((action: A) => string); + /** + * The maximum number of stack trace entries to record per action. Defaults to 10. + */ + traceLimit?: number; } export function composeWithDevTools(...funcs: Array>): StoreEnhancer;