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:
@@ -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<string, any></code> | |
|
||||
| [custom](#custom-property) | <code>TOptions</code> | |
|
||||
| [decimals](#decimals-property) | <code>number | 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
|
||||
|
||||
Reference in New Issue
Block a user