(type: string)
| 92 | * @returns 是否为标准组件类型 |
| 93 | */ |
| 94 | export function isStandardComponent(type: string): type is StandardComponentType { |
| 95 | return (STANDARD_COMPONENTS as readonly string[]).includes(type); |
| 96 | } |
| 97 | |
| 98 | /** |
| 99 | * 判断是否为布局组件类型 |
no outgoing calls
no test coverage detected