@wufengteam/inputs
Version:
平台提供的右侧属性编辑器,需要在主工程中注册
12 lines (11 loc) • 346 B
TypeScript
import React from 'react';
import './index.less';
interface ParamsSettingProps {
apiObject?: any;
fields?: any;
onValuesChange?: any;
requestConfig?: any;
responseConfig?: any;
}
declare const ParamsSetting: React.ForwardRefExoticComponent<ParamsSettingProps & React.RefAttributes<HTMLElement>>;
export default ParamsSetting;