Files
django-stubs/django-stubs/contrib/gis/gdal/envelope.pyi
Na'aman Hirschfeld ce370ea79f Missing stubs (#467)
* adding missing db.backends typings and updated test

* added missing stubs

* reformatted files

* removed contrib.postgres.forms

* fixed test
2020-10-11 12:14:08 +03:00

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): ...