mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-28 06:36:54 +08:00
9 lines
319 B
Python
9 lines
319 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]: ...
|