mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-07 12:44:29 +08:00
6 lines
172 B
Python
6 lines
172 B
Python
from typing import Any, Callable, List
|
|
|
|
from django.urls.resolvers import URLPattern
|
|
|
|
def static(prefix: str, view: Callable = ..., **kwargs: Any) -> List[URLPattern]: ...
|