mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-15 00:07:09 +08:00
17 lines
470 B
Python
17 lines
470 B
Python
from typing import Any, Optional
|
|
|
|
from django.db.models.expressions import Func
|
|
|
|
class Aggregate(Func):
|
|
filter_template: str = ...
|
|
filter: Any = ...
|
|
def __init__(self, *expressions: Any, distinct: bool = ..., filter: Optional[Any] = ..., **extra: Any) -> None: ...
|
|
|
|
class Avg(Aggregate): ...
|
|
class Count(Aggregate): ...
|
|
class Max(Aggregate): ...
|
|
class Min(Aggregate): ...
|
|
class StdDev(Aggregate): ...
|
|
class Sum(Aggregate): ...
|
|
class Variance(Aggregate): ...
|