diff --git a/django-stubs/views/decorators/common.pyi b/django-stubs/views/decorators/common.pyi new file mode 100644 index 0000000..cf340c2 --- /dev/null +++ b/django-stubs/views/decorators/common.pyi @@ -0,0 +1,5 @@ +from typing import Any, Callable, TypeVar + +_C = TypeVar("_C", bound=Callable[..., Any]) + +def no_append_slash(view_func: _C) -> _C: ...