mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-08 21:14:49 +08:00
* adding missing db.backends typings and updated test * added missing stubs * reformatted files * removed contrib.postgres.forms * fixed test
11 lines
356 B
Python
11 lines
356 B
Python
from typing import Any, Optional
|
|
|
|
class SpatialOperator:
|
|
sql_template: Any = ...
|
|
op: Any = ...
|
|
func: Any = ...
|
|
def __init__(self, op: Optional[Any] = ..., func: Optional[Any] = ...) -> None: ...
|
|
@property
|
|
def default_template(self): ...
|
|
def as_sql(self, connection: Any, lookup: Any, template_params: Any, sql_params: Any): ...
|