tanstack-cacher 1.4.0 → 1.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +1 -0
- package/index.js +3 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
package/index.js
CHANGED
|
@@ -352,6 +352,9 @@ var QueryCacheManager = class {
|
|
|
352
352
|
const queryKey = key ?? this.config.queryKey;
|
|
353
353
|
this.config.queryClient.removeQueries({ queryKey: [queryKey] });
|
|
354
354
|
}
|
|
355
|
+
getConfig() {
|
|
356
|
+
return this.config;
|
|
357
|
+
}
|
|
355
358
|
/**
|
|
356
359
|
* Get handlers for use with mutations
|
|
357
360
|
*
|
package/package.json
CHANGED