mirror of
https://github.com/davidhalter/django-stubs.git
synced 2026-01-09 13:02:22 +08:00
12 lines
269 B
Python
12 lines
269 B
Python
from typing import Any, List, Optional
|
|
|
|
from django.core.checks.messages import Warning
|
|
|
|
|
|
def check_all_models(
|
|
app_configs: None = ..., **kwargs: Any
|
|
) -> List[Warning]: ...
|
|
def check_lazy_references(
|
|
app_configs: None = ..., **kwargs: Any
|
|
) -> List[Any]: ...
|