mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-09 13:35:01 +08:00
9 lines
189 B
Python
9 lines
189 B
Python
from typing import Any, Callable, List, Optional
|
|
|
|
from django.urls.resolvers import URLPattern
|
|
|
|
|
|
def static(
|
|
prefix: str, view: Callable = ..., **kwargs: Any
|
|
) -> List[URLPattern]: ...
|