mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-10 22:11:54 +08:00
12 lines
338 B
Python
12 lines
338 B
Python
from django.db.models.aggregates import Aggregate
|
|
|
|
from .mixins import OrderableAggMixin
|
|
|
|
class ArrayAgg(OrderableAggMixin, Aggregate): ...
|
|
class BitAnd(Aggregate): ...
|
|
class BitOr(Aggregate): ...
|
|
class BoolAnd(Aggregate): ...
|
|
class BoolOr(Aggregate): ...
|
|
class JSONBAgg(Aggregate): ...
|
|
class StringAgg(OrderableAggMixin, Aggregate): ...
|