UNPKG

geostyler

Version:
15 lines (14 loc) 619 B
import { default as React } from 'react'; export type ClassificationMethod = 'equalInterval' | 'quantile' | 'logarithmic' | 'kmeans'; export interface ClassificationComboProps { /** List of supported classification methods */ classifications?: ClassificationMethod[]; /** The callback method that is triggered when the state changes */ onChange?: (classification: ClassificationMethod) => void; /** The selected classification method */ classification?: ClassificationMethod; } /** * Symbolizer editorwindow UI. */ export declare const ClassificationCombo: React.FC<ClassificationComboProps>;