mirror of https://github.com/sgoudham/Enso-Bot.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
324 B
Python
18 lines
324 B
Python
from typing import Any, Generic, TypeVar
|
|
|
|
from aiohttp.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: ...
|