mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* added packages reference menu item. * removed the draft flag. * Updated docs by running script.
37 lines
1.0 KiB
Markdown
37 lines
1.0 KiB
Markdown
+++
|
|
# -----------------------------------------------------------------------
|
|
# Do not edit this file. It is automatically generated by API Documenter.
|
|
# -----------------------------------------------------------------------
|
|
title = "DataTransformerInfo"
|
|
keywords = ["grafana","documentation","sdk","@grafana/data"]
|
|
type = "docs"
|
|
+++
|
|
|
|
## DataTransformerInfo interface
|
|
|
|
<b>Signature</b>
|
|
|
|
```typescript
|
|
export interface DataTransformerInfo<TOptions = any> extends RegistryItemWithOptions
|
|
```
|
|
<b>Import</b>
|
|
|
|
```typescript
|
|
import { DataTransformerInfo } from '@grafana/data';
|
|
```
|
|
<b>Properties</b>
|
|
|
|
| Property | Type | Description |
|
|
| --- | --- | --- |
|
|
| [transformer](#transformer-property) | <code>(options: TOptions) => DataTransformer</code> | Function that configures transformation and returns a transformer |
|
|
|
|
### transformer property
|
|
|
|
Function that configures transformation and returns a transformer
|
|
|
|
<b>Signature</b>
|
|
|
|
```typescript
|
|
transformer: (options: TOptions) => DataTransformer;
|
|
```
|