import { locationService } from '@grafana/runtime'; export const useHistory = () => { return { push: ({ query }: { query: Parameters[0] }) => { locationService.partial(query); }, }; };