* 获取已注册的组件构造函数 * * @param typeName - 组件类型名称 * @returns 组件构造函数,如果未注册则返回 undefined
(typeName: string)
| 121 | * @returns 组件构造函数,如果未注册则返回 undefined |
| 122 | */ |
| 123 | get(typeName: string): ComponentConstructor | undefined { |
| 124 | return this.components.get(typeName); |
| 125 | } |
| 126 | |
| 127 | /** |
| 128 | * 检查组件是否已注册 |
no outgoing calls
no test coverage detected