LocationUpdate interface

Signature

  1. export interface LocationUpdate

Import

  1. import { LocationUpdate } from '@grafana/runtime';

Properties

PropertyTypeDescription
partialbooleanIf set to true, the query argument will be added to the existing URL.
pathstringTarget path where you automatically wants to navigate the user.
queryUrlQueryMapSpecify this value if you want to add values to the query string of the URL.
replaceboolean

partial property

If set to true, the query argument will be added to the existing URL.

Signature

  1. partial?: boolean;

path property

Target path where you automatically wants to navigate the user.

Signature

  1. path?: string;

query property

Specify this value if you want to add values to the query string of the URL.

Signature

  1. query?: UrlQueryMap;

replace property

Signature

  1. replace?: boolean;