mirror of
https://github.com/grafana/grafana.git
synced 2025-08-03 06:22:13 +08:00
Docs: run the api-extractor on master to update docs (#23726)
* regenerated packages docs. * fixed spelling issues. * fixed spelling issues.
This commit is contained in:
@ -24,15 +24,14 @@ import { LocationUpdate } from '@grafana/runtime';
|
||||
|
||||
| Property | Type | Description |
|
||||
| --- | --- | --- |
|
||||
| [partial](#partial-property) | <code>boolean</code> | Add the query argument to the existing URL |
|
||||
| [path](#path-property) | <code>string</code> | |
|
||||
| [query](#query-property) | <code>UrlQueryMap</code> | |
|
||||
| [partial](#partial-property) | <code>boolean</code> | If set to true, the query argument will be added to the existing URL. |
|
||||
| [path](#path-property) | <code>string</code> | Target path where you automatically wants to navigate the user. |
|
||||
| [query](#query-property) | <code>UrlQueryMap</code> | Specify this value if you want to add values to the query string of the URL. |
|
||||
| [replace](#replace-property) | <code>boolean</code> | |
|
||||
| [routeParams](#routeparams-property) | <code>UrlQueryMap</code> | Do not change this unless you are the angular router |
|
||||
|
||||
### partial property
|
||||
|
||||
Add the query argument to the existing URL
|
||||
If set to true, the query argument will be added to the existing URL.
|
||||
|
||||
<b>Signature</b>
|
||||
|
||||
@ -42,6 +41,8 @@ partial?: boolean;
|
||||
|
||||
### path property
|
||||
|
||||
Target path where you automatically wants to navigate the user.
|
||||
|
||||
<b>Signature</b>
|
||||
|
||||
```typescript
|
||||
@ -50,6 +51,8 @@ path?: string;
|
||||
|
||||
### query property
|
||||
|
||||
Specify this value if you want to add values to the query string of the URL.
|
||||
|
||||
<b>Signature</b>
|
||||
|
||||
```typescript
|
||||
@ -63,13 +66,3 @@ query?: UrlQueryMap;
|
||||
```typescript
|
||||
replace?: boolean;
|
||||
```
|
||||
|
||||
### routeParams property
|
||||
|
||||
Do not change this unless you are the angular router
|
||||
|
||||
<b>Signature</b>
|
||||
|
||||
```typescript
|
||||
routeParams?: UrlQueryMap;
|
||||
```
|
||||
|
Reference in New Issue
Block a user