mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-11 06:21:58 +08:00
14 lines
363 B
Python
14 lines
363 B
Python
from typing import Any, Optional
|
|
|
|
from django.db.backends.base.introspection import BaseDatabaseIntrospection
|
|
|
|
field_size_re: Any
|
|
|
|
def get_field_size(name: str) -> Optional[int]: ...
|
|
|
|
class FlexibleFieldLookupDict:
|
|
base_data_types_reverse: Any = ...
|
|
def __getitem__(self, key: str) -> Any: ...
|
|
|
|
class DatabaseIntrospection(BaseDatabaseIntrospection): ...
|