react-img-editor-en
Version:
Image Annotation Tool for React
10 lines (9 loc) • 349 B
TypeScript
import React from 'react';
import { PluginParamName, PluginParamValue } from '../../common/type';
interface ParamSettingProps {
paramNames: PluginParamName[];
paramValue: PluginParamValue | null;
onChange: (value: PluginParamValue) => void;
}
export default function ParamSetting(props: ParamSettingProps): React.JSX.Element;
export {};