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

8 lines
174 B
Python

from django.urls.resolvers import URLPattern
from typing import (
Callable,
List,
)
def static(prefix: str, view: Callable = ..., **kwargs) -> List[URLPattern]: ...