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