(type, controller)
| 134 | } |
| 135 | |
| 136 | export function isMainComponentType(type, controller) { |
| 137 | for (const entry of repo.entries()) { |
| 138 | if (entry[0] === type && entry[1].contrConstructor === controller.constructor) { |
| 139 | return true; |
| 140 | } |
| 141 | } |
| 142 | } |