mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-16 00:37:11 +08:00
9 lines
220 B
Python
9 lines
220 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: ...
|