location.ts 208 B

12345678910
  1. import { UrlQueryMap } from '@grafana/runtime';
  2. export interface LocationState {
  3. url: string;
  4. path: string;
  5. query: UrlQueryMap;
  6. routeParams: UrlQueryMap;
  7. replace: boolean;
  8. lastUpdated: number;
  9. }