@tanstack/react-query-devtools 5.0.0-alpha.34 → 5.0.0-alpha.38

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.
@@ -4978,14 +4978,6 @@
4978
4978
  SuperJSON.allowErrorProps = SuperJSON.defaultInstance.allowErrorProps.bind(SuperJSON.defaultInstance);
4979
4979
  return SuperJSON;
4980
4980
  }();
4981
- SuperJSON.serialize;
4982
- SuperJSON.deserialize;
4983
- SuperJSON.stringify;
4984
- SuperJSON.parse;
4985
- SuperJSON.registerClass;
4986
- SuperJSON.registerCustom;
4987
- SuperJSON.registerSymbol;
4988
- SuperJSON.allowErrorProps;
4989
4981
 
4990
4982
  function getQueryStatusLabel(query) {
4991
4983
  return query.state.fetchStatus === 'fetching' ? 'fetching' : !query.getObserversCount() ? 'inactive' : query.state.fetchStatus === 'paused' ? 'paused' : query.isStale() ? 'stale' : 'fresh';