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
+26 -5
View File
@@ -24,14 +24,17 @@ import { PanelData } from '@grafana/data';
| Property | Type | Description |
| --- | --- | --- |
| [error](#error-property) | <code>DataQueryError</code> | |
| [request](#request-property) | <code>DataQueryRequest</code> | |
| [series](#series-property) | <code>DataFrame[]</code> | |
| [state](#state-property) | <code>LoadingState</code> | |
| [timeRange](#timerange-property) | <code>TimeRange</code> | |
| [error](#error-property) | <code>DataQueryError</code> | Any query errors |
| [request](#request-property) | <code>DataQueryRequest</code> | Request contains the queries and properties sent to the datasource |
| [series](#series-property) | <code>DataFrame[]</code> | Contains data frames with field overrides applied |
| [state](#state-property) | <code>LoadingState</code> | State of the data (loading, done, error, streaming) |
| [timeRange](#timerange-property) | <code>TimeRange</code> | Contains the range from the request or a shifted time range if a request uses relative time |
| [timings](#timings-property) | <code>DataQueryTimings</code> | Timing measurements |
### error property
Any query errors
<b>Signature</b>
```typescript
@@ -40,6 +43,8 @@ error?: DataQueryError;
### request property
Request contains the queries and properties sent to the datasource
<b>Signature</b>
```typescript
@@ -48,6 +53,8 @@ request?: DataQueryRequest;
### series property
Contains data frames with field overrides applied
<b>Signature</b>
```typescript
@@ -56,6 +63,8 @@ series: DataFrame[];
### state property
State of the data (loading, done, error, streaming)
<b>Signature</b>
```typescript
@@ -64,8 +73,20 @@ state: LoadingState;
### timeRange property
Contains the range from the request or a shifted time range if a request uses relative time
<b>Signature</b>
```typescript
timeRange: TimeRange;
```
### timings property
Timing measurements
<b>Signature</b>
```typescript
timings?: DataQueryTimings;
```