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
+11 -3
View File
@@ -10,6 +10,8 @@ draft = true
## EchoMeta interface
Describes the meta information that are sent together with each event.
<b>Signature</b>
```typescript
@@ -30,9 +32,9 @@ import { EchoMeta } from '@grafana/runtime';
| [ts](#ts-property) | <code>number</code> | A millisecond epoch |
| [url](#url-property) | <code>string</code> | |
| [userAgent](#useragent-property) | <code>string</code> | |
| [userId](#userid-property) | <code>number</code> | |
| [userLogin](#userlogin-property) | <code>string</code> | |
| [userSignedIn](#usersignedin-property) | <code>boolean</code> | |
| [userId](#userid-property) | <code>number</code> | The current users unique identifier. |
| [userLogin](#userlogin-property) | <code>string</code> | The current users username used to login into Grafana e.g. email. |
| [userSignedIn](#usersignedin-property) | <code>boolean</code> | True when user is logged in into Grafana. |
| [windowSize](#windowsize-property) | <code>SizeMeta</code> | |
### screenSize property
@@ -91,6 +93,8 @@ userAgent: string;
### userId property
The current users unique identifier.
<b>Signature</b>
```typescript
@@ -99,6 +103,8 @@ userId: number;
### userLogin property
The current users username used to login into Grafana e.g. email.
<b>Signature</b>
```typescript
@@ -107,6 +113,8 @@ userLogin: string;
### userSignedIn property
True when user is logged in into Grafana.
<b>Signature</b>
```typescript