You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Неплохо было бы добавить проверку типов при установлении значений в реестре:
interfaceRegistryComponents{ComponentName: ComponentType<ComponentProps>}constregistry=newRegistry<RegistryComponents>({id: 'registry-id'})// Component должен быть типом ComponentType<ComponentProps>registry.set('component-key',Component)
Но могут возникнуть проблемы при переопределении уже существующего реестра:
// Скорее всего ругнется, т.к. компонент EnhancedComponent будет иметь другой типregistry.set('component-key',EnhancedComponent)
The text was updated successfully, but these errors were encountered:
Неплохо было бы добавить проверку типов при установлении значений в реестре:
Но могут возникнуть проблемы при переопределении уже существующего реестра:
The text was updated successfully, but these errors were encountered: