mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-06 12:14:28 +08:00
16 lines
477 B
Python
16 lines
477 B
Python
# Stubs for django.conf.urls (Python 3.6)
|
|
#
|
|
# NOTE: This dynamically typed stub was automatically generated by stubgen.
|
|
|
|
from django.urls import include as include
|
|
from typing import Any, Optional
|
|
|
|
from django.urls.resolvers import URLPattern, URLResolver
|
|
from typing import Any, Optional, Union
|
|
handler400: Any
|
|
handler403: Any
|
|
handler404: Any
|
|
handler500: Any
|
|
|
|
def url(regex: str, view: Any, kwargs: Any = ..., name: Optional[str] = ...) -> Union[URLPattern, URLResolver]: ...
|