UNPKG

geostyler

Version:
11 lines (10 loc) 343 B
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;