mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-11 06:21:58 +08:00
6 lines
170 B
Python
6 lines
170 B
Python
from typing import Any, Callable, Optional, Type
|
|
|
|
from django.db.models.base import Model
|
|
|
|
def register(*models: Type[Model], site: Optional[Any] = ...) -> Callable: ...
|