mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 04:34:28 +08:00
6 lines
117 B
Python
6 lines
117 B
Python
from typing import TypeVar, Any
|
|
|
|
_FT = TypeVar('_FT')
|
|
|
|
def register(func: _FT, *args: Any, **kargs: Any) -> _FT: ...
|