mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-09 13:35:01 +08:00
7 lines
214 B
Python
7 lines
214 B
Python
from typing import Any, Dict, Optional
|
|
|
|
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: ...
|