Component state for :class:`_ModelState`
| 691 | |
| 692 | |
| 693 | class _LifeCycleState(NamedTuple): |
| 694 | """Component state for :class:`_ModelState`""" |
| 695 | |
| 696 | id: _LifeCycleStateId |
| 697 | """A unique identifier used in the :class:`~reactpy.core.hooks.LifeCycleHook` callback""" |
| 698 | |
| 699 | hook: LifeCycleHook |
| 700 | """The life cycle hook""" |
| 701 | |
| 702 | component: ComponentType |
| 703 | """The current component instance""" |
| 704 | |
| 705 | |
| 706 | _Type = TypeVar("_Type") |
no outgoing calls
no test coverage detected