mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-15 00:07:09 +08:00
initial commit
This commit is contained in:
18
django/db/models/base.pyi
Normal file
18
django/db/models/base.pyi
Normal file
@@ -0,0 +1,18 @@
|
||||
from typing import (
|
||||
Any,
|
||||
Dict,
|
||||
List,
|
||||
)
|
||||
|
||||
|
||||
class Model:
|
||||
def __eq__(self, other: object) -> bool: ...
|
||||
def __getstate__(self) -> Dict[str, Any]: ...
|
||||
def __hash__(self) -> int: ...
|
||||
def __init__(self, *args, **kwargs) -> None: ...
|
||||
def __reduce__(self) -> Any: ...
|
||||
def __repr__(self) -> str: ...
|
||||
def __setstate__(self, state: Dict[str, Any]) -> None: ...
|
||||
def __str__(self) -> str: ...
|
||||
@classmethod
|
||||
def _check_column_name_clashes(cls) -> List[Any]: ...
|
||||
Reference in New Issue
Block a user