Source code for whistle.typing.event

from typing import Protocol


[docs] class IEvent(Protocol): name: str propagation_stopped: bool
[docs] def stop_propagation(self): ...