UNPKG

react-img-editor-en

Version:
10 lines (9 loc) 349 B
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 {};