mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-15 16:27:09 +08:00
* adding missing db.backends typings and updated test * added missing stubs * reformatted files * removed contrib.postgres.forms * fixed test
26 lines
550 B
Python
26 lines
550 B
Python
from ctypes import Structure
|
|
from typing import Any
|
|
|
|
class OGREnvelope(Structure): ...
|
|
|
|
class Envelope:
|
|
def __init__(self, *args: Any) -> None: ...
|
|
def __eq__(self, other: Any) -> Any: ...
|
|
def expand_to_include(self, *args: Any): ...
|
|
@property
|
|
def min_x(self): ...
|
|
@property
|
|
def min_y(self): ...
|
|
@property
|
|
def max_x(self): ...
|
|
@property
|
|
def max_y(self): ...
|
|
@property
|
|
def ur(self): ...
|
|
@property
|
|
def ll(self): ...
|
|
@property
|
|
def tuple(self): ...
|
|
@property
|
|
def wkt(self): ...
|