mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-26 05:41:11 +08:00
6 lines
114 B
Python
6 lines
114 B
Python
from typing import Callable, TypeVar
|
|
|
|
_C = TypeVar("_C", bound=Callable)
|
|
|
|
def gzip_page(view_func: _C) -> _C: ...
|