UNPKG

@redhare/lowcode-types

Version:

Types for Ali lowCode engine

8 lines (7 loc) 255 B
import { isCustomView } from './isCustomView'; /** * @deprecated use same function from '@redhare/lowcode-utils' instead */ export function isSetterConfig(obj) { return obj && typeof obj === 'object' && 'componentName' in obj && !isCustomView(obj); }