geostyler
Version:
Framework for styling geodata
11 lines (10 loc) • 343 B
TypeScript
import { default as React } from 'react';
import { FCaseParameter } from 'geostyler-style';
import { Type } from '../FunctionUI';
export type CaseInputProps = {
value?: FCaseParameter;
onChange: (newValue: FCaseParameter) => void;
type?: Type;
};
export declare const CaseInput: React.FC<CaseInputProps>;
export default CaseInput;