mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-04-25 16:24:03 +08:00
cb97bb54c0
Closes #579.
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: ...
|