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:
Marcus Andersson
2020-04-21 10:41:50 +02:00
committed by GitHub
parent 017767ae39
commit a2d741f60f
275 changed files with 6448 additions and 2193 deletions

View File

@ -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;
```