UNPKG

@grafana/ui

Version:

Grafana Components Library

9 lines (8 loc) 296 B
import React from 'react'; import { Field } from '@grafana/data'; export interface Props { showMinMax: boolean; value: Partial<Field>; onChange: (value: Partial<Field>, event?: React.SyntheticEvent<HTMLElement>) => void; } export declare const FieldPropertiesEditor: React.FC<Props>;