mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-10 05:51:53 +08:00
11 lines
339 B
Python
11 lines
339 B
Python
from typing import Any, List, Tuple, Union
|
|
|
|
from django.urls.resolvers import URLPattern, URLResolver
|
|
|
|
def i18n_patterns(
|
|
*urls: Any, prefix_default_language: bool = ...
|
|
) -> Union[List[List[Any]], List[URLPattern], List[URLResolver]]: ...
|
|
def is_language_prefix_patterns_used(urlconf: str) -> Tuple[bool, bool]: ...
|
|
|
|
urlpatterns: Any
|