@wufengteam/inputs
Version:
平台提供的右侧属性编辑器,需要在主工程中注册
20 lines (19 loc) • 485 B
TypeScript
import type { FC } from 'react';
import './index.less';
export interface fieldChangeProps {
value: string;
fieldKey: string | number;
index: number;
}
export interface fieldValueProps {
attrCode: string;
screenCondition: string;
screenInput?: string | number;
screenConnection?: any;
formType: string;
appId: string;
busiObjectId: string;
isJson?: '1' | '0';
}
declare const FilterAttrOtherForm: FC<any>;
export default FilterAttrOtherForm;