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
@@ -17,7 +17,7 @@ Plugins may extend this with additional properties. Something like series overri
<b>Signature</b>
```typescript
export interface FieldConfig
export interface FieldConfig<TOptions extends object = any>
```
<b>Import</b>
@@ -29,7 +29,7 @@ import { FieldConfig } from '@grafana/data';
| Property | Type | Description |
| --- | --- | --- |
| [color](#color-property) | <code>FieldColor</code> | |
| [custom](#custom-property) | <code>Record&lt;string, any&gt;</code> | |
| [custom](#custom-property) | <code>TOptions</code> | |
| [decimals](#decimals-property) | <code>number &#124; null</code> | |
| [filterable](#filterable-property) | <code>boolean</code> | |
| [links](#links-property) | <code>DataLink[]</code> | |
@@ -56,7 +56,7 @@ color?: FieldColor;
<b>Signature</b>
```typescript
custom?: Record<string, any>;
custom?: TOptions;
```
### decimals property