geostyler
Version:
Framework for styling geodata
13 lines (12 loc) • 509 B
TypeScript
import { default as React } from 'react';
import { Symbolizer, TextSymbolizer } from 'geostyler-style';
export interface PropTextEditorProps {
symbolizer: TextSymbolizer;
onSymbolizerChange?: (changedSymb: Symbolizer) => void;
}
/**
* The PropTextEditor class. Allows to edit text styles solely based on a
* feature property. The entered word will be understood as the property name
* of a feature. No static text is allowed.
*/
export declare const PropTextEditor: React.FC<PropTextEditorProps>;