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