mirror of
https://github.com/davidhalter/django-stubs.git
synced 2026-05-24 17:28:41 +08:00
initial commit
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
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]: ...
|
||||
Reference in New Issue
Block a user