mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-15 16:27:09 +08:00
9 lines
194 B
Python
9 lines
194 B
Python
from typing import Any, Callable, Optional
|
|
|
|
|
|
def staff_member_required(
|
|
view_func: Optional[Callable] = ...,
|
|
redirect_field_name: str = ...,
|
|
login_url: str = ...,
|
|
) -> Callable: ...
|