Files
django-stubs/django/urls/conf.pyi
Maxim Kurnikov a9f215bf64 initial commit
2018-07-29 18:12:23 +03:00

23 lines
402 B
Python

from django.urls.resolvers import (
CheckURLMixin,
URLPattern,
URLResolver,
)
from typing import (
Any,
Optional,
Type,
Union,
)
def _path(
route: str,
view: Any,
kwargs: Any = ...,
name: Optional[str] = ...,
Pattern: Type[CheckURLMixin] = ...
) -> Union[URLPattern, URLResolver]: ...
def include(arg: Any, namespace: Optional[str] = ...) -> Any: ...