mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-15 00:07:09 +08:00
11 lines
313 B
Python
11 lines
313 B
Python
from django.db.backends.base.base import BaseDatabaseWrapper
|
|
from django.db.models.fields import Field
|
|
from typing import (
|
|
Any,
|
|
List,
|
|
)
|
|
|
|
|
|
class BaseDatabaseValidation:
|
|
def __init__(self, connection: BaseDatabaseWrapper) -> None: ...
|
|
def check_field(self, field: Field, **kwargs) -> List[Any]: ... |