StandardEditorProps interface

Signature

  1. export interface StandardEditorProps<TValue = any, TSettings = any, TOptions = any, TState = any>

Import

  1. import { StandardEditorProps } from '@grafana/data';

Properties

PropertyTypeDescription
contextStandardEditorContext<TOptions, TState>
idstring
itemStandardEditorsRegistryItem<TValue, TSettings>
onChange(value?: TValue) => void
valueTValue

context property

Signature

  1. context: StandardEditorContext<TOptions, TState>;

id property

Signature

  1. id?: string;

item property

Signature

  1. item: StandardEditorsRegistryItem<TValue, TSettings>;

onChange property

Signature

  1. onChange: (value?: TValue) => void;

value property

Signature

  1. value: TValue;