Files
Morgan Bartholomew b15197f935 [python] move bundled django stubs for free mode
GitOrigin-RevId: 2c4b350f4ca7a0e4dec920eb6848d0962c58ba62
2025-06-10 08:41:22 +00:00

15 lines
459 B
Python

from typing import Any
from django.contrib.postgres.fields import ArrayField
from django.db.models import Subquery
from django.db.models.query import QuerySet
from django.db.models.sql.query import Query
from django.utils.functional import cached_property
class ArraySubquery(Subquery):
template: str
def __init__(self, queryset: Query | QuerySet[Any], **kwargs: Any) -> None: ...
@cached_property
def output_field(self) -> ArrayField: ...