+++ # ----------------------------------------------------------------------- # Do not edit this file. It is automatically generated by API Documenter. # ----------------------------------------------------------------------- title = "LocationUpdate" keywords = ["grafana","documentation","sdk","@grafana/runtime"] type = "docs" +++ ## LocationUpdate interface Signature ```typescript export interface LocationUpdate ``` Import ```typescript import { LocationUpdate } from '@grafana/runtime'; ``` Properties | Property | Type | Description | | --- | --- | --- | | [partial](#partial-property) | boolean | If set to true, the query argument will be added to the existing URL. | | [path](#path-property) | string | Target path where you automatically wants to navigate the user. | | [query](#query-property) | UrlQueryMap | Specify this value if you want to add values to the query string of the URL. | | [replace](#replace-property) | boolean | | ### partial property If set to true, the query argument will be added to the existing URL. Signature ```typescript partial?: boolean; ``` ### path property Target path where you automatically wants to navigate the user. Signature ```typescript path?: string; ``` ### query property Specify this value if you want to add values to the query string of the URL. Signature ```typescript query?: UrlQueryMap; ``` ### replace property Signature ```typescript replace?: boolean; ```