import { DSLQuery } from '@lingxiteam/dsl'; export interface PropsChangeObjType { [compName: string]: { [field: string]: (opts: { changeField: { name: string; value: any; }; isMobile: boolean; DSLCore?: DSLQuery; originValue: any; [key: string]: any; }) => void; }; } /** * 添加预处理属性(命名规则如下) * 'h5View' -- 移动端 'pcView' -- PC端 'View' -- 移动端和PC端 */ declare const propsChangeObj: PropsChangeObjType; export default propsChangeObj;