geostyler
Version:
Framework for styling geodata
15 lines (14 loc) • 685 B
TypeScript
import { default as React } from 'react';
import { SelectProps } from 'antd';
import { FunctionUIProps } from '../../FunctionUI/FunctionUI';
import { Expression, GeoStylerStringFunction } from 'geostyler-style';
export interface StringExpressionSelectProps {
className?: string;
functionUiProps?: FunctionUIProps<GeoStylerStringFunction>;
onCancel?: (type: 'string') => void;
onChange?: (newValue: Expression<string> | undefined) => void;
selectProps?: Omit<SelectProps, 'value' | 'onChange' | 'className'>;
value?: Expression<string>;
}
export declare const StringExpressionSelect: React.FC<StringExpressionSelectProps>;
export default StringExpressionSelect;