mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-18 01:45:59 +08:00
* Fill remaining missing hints with Any & disallow partial hints * ModelFormatDict -> _ModelFormatDict * Fixes * Add __init__ return hints * Add suppression
8 lines
247 B
Python
8 lines
247 B
Python
from typing import Any
|
|
|
|
def pack(structure: Any, data: Any) -> Any: ...
|
|
def unpack(structure: Any, data: Any) -> Any: ...
|
|
def chunk(data: Any, index: Any) -> Any: ...
|
|
def from_pgraster(data: Any) -> Any: ...
|
|
def to_pgraster(rast: Any) -> Any: ...
|