+++
# -----------------------------------------------------------------------
# Do not edit this file. It is automatically generated by API Documenter.
# -----------------------------------------------------------------------
title = "LocationUpdate"
keywords = ["grafana","documentation","sdk","@grafana/runtime"]
type = "docs"
draft = true
+++
## LocationUpdate interface
Signature
```typescript
export interface LocationUpdate
```
Import
```typescript
import { LocationUpdate } from '@grafana/runtime';
```
Properties
| Property | Type | Description |
| --- | --- | --- |
| [partial](#partial-property) | boolean
| Add the query argument to the existing URL |
| [path](#path-property) | string
| |
| [query](#query-property) | UrlQueryMap
| |
| [replace](#replace-property) | boolean
| |
| [routeParams](#routeparams-property) | UrlQueryMap
| Do not change this unless you are the angular router |
### partial property
Add the query argument to the existing URL
Signature
```typescript
partial?: boolean;
```
### path property
Signature
```typescript
path?: string;
```
### query property
Signature
```typescript
query?: UrlQueryMap;
```
### replace property
Signature
```typescript
replace?: boolean;
```
### routeParams property
Do not change this unless you are the angular router
Signature
```typescript
routeParams?: UrlQueryMap;
```