(type: string)
| 122 | * @returns 是否为输入组件类型 |
| 123 | */ |
| 124 | export function isInputComponent(type: string): type is InputComponentType { |
| 125 | return (INPUT_COMPONENTS as readonly string[]).includes(type); |
| 126 | } |
| 127 | |
| 128 | /** |
| 129 | * 创建占位符组件构造函数 |
no outgoing calls
no test coverage detected