mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-10 22:11:54 +08:00
7 lines
204 B
Python
7 lines
204 B
Python
from typing import Any, Dict
|
|
|
|
UserModel: Any
|
|
|
|
def check_password(environ: Dict[Any, Any], username: str, password: str) -> Any: ...
|
|
def groups_for_user(environ: Dict[Any, Any], username: str) -> Any: ...
|