+++
# -----------------------------------------------------------------------
# Do not edit this file. It is automatically generated by API Documenter.
# -----------------------------------------------------------------------
title = "FieldConfigEditorProps"
keywords = ["grafana","documentation","sdk","@grafana/data"]
type = "docs"
+++
## FieldConfigEditorProps interface
Signature
```typescript
export interface FieldConfigEditorProps extends Omit, 'item'>
```
Import
```typescript
import { FieldConfigEditorProps } from '@grafana/data';
```
Properties
| Property | Type | Description |
| --- | --- | --- |
| [context](#context-property) | FieldOverrideContext | |
| [item](#item-property) | FieldConfigPropertyItem<TValue, TSettings> | |
| [onChange](#onchange-property) | (value?: TValue) => void | |
| [value](#value-property) | TValue | |
### context property
Signature
```typescript
context: FieldOverrideContext;
```
### item property
Signature
```typescript
item: FieldConfigPropertyItem;
```
### onChange property
Signature
```typescript
onChange: (value?: TValue) => void;
```
### value property
Signature
```typescript
value: TValue;
```