mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-16 08:47:49 +08:00
14 lines
332 B
Python
14 lines
332 B
Python
from typing import Any, List, Optional
|
|
|
|
from django.core.checks.messages import CheckMessage
|
|
|
|
from .management import _get_builtin_permissions
|
|
|
|
|
|
def check_user_model(
|
|
app_configs: None = ..., **kwargs: Any
|
|
) -> List[CheckMessage]: ...
|
|
def check_models_permissions(
|
|
app_configs: None = ..., **kwargs: Any
|
|
) -> List[Any]: ...
|