UNPKG

@qn-pandora/pandora-visualization

Version:

Pandora 通用可视化库

15 lines (14 loc) 453 B
import * as React from 'react'; import { ILevel } from '../../../../../constants/metric-panel-style'; interface IItemProps { className?: string; value: ILevel; onChange: (value: ILevel) => void; onRemove: (value: ILevel) => void; } export default class Item extends React.Component<IItemProps, any> { handleRemoveItem(): void; handleItemChange(prop: string, newValue: string): void; render(): React.JSX.Element; } export {};