You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
311 B
13 lines
311 B
from typing import Any, Generic, TypeVar
|
|
|
|
from frozenlist import FrozenList
|
|
|
|
__all__ = ("Signal",)
|
|
|
|
_T = TypeVar("_T")
|
|
|
|
class Signal(FrozenList[_T], Generic[_T]):
|
|
def __init__(self, owner: Any) -> None: ...
|
|
def __repr__(self) -> str: ...
|
|
async def send(self, *args: Any, **kwargs: Any) -> None: ...
|