mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-08 13:04:47 +08:00
15 lines
461 B
Python
15 lines
461 B
Python
from typing import Any, List, Optional
|
|
|
|
from django.core.checks.messages import Error
|
|
from django.db import models
|
|
from django.db.models.query import QuerySet
|
|
|
|
class CurrentSiteManager(models.Manager):
|
|
creation_counter: int
|
|
model: None
|
|
name: None
|
|
use_in_migrations: bool = ...
|
|
def __init__(self, field_name: Optional[str] = ...) -> None: ...
|
|
def check(self, **kwargs: Any) -> List[Error]: ...
|
|
def get_queryset(self) -> QuerySet: ...
|