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