import { useHealthStore } from './health'; import { usePointsStore } from './points'; export function resetAllStores(): void { useHealthStore.getState().clearCache(); usePointsStore.getState().invalidate(); }