(obj: any)
| 5 | * @deprecated use same function from '@alilc/lowcode-utils' instead |
| 6 | */ |
| 7 | export function isSetterConfig(obj: any): obj is IPublicTypeSetterConfig { |
| 8 | return obj && typeof obj === 'object' && 'componentName' in obj && !isCustomView(obj); |
| 9 | } |
no test coverage detected
searching dependent graphs…