mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-23 20:31:32 +08:00
8 lines
174 B
Python
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]: ... |