Files
django-stubs/django-stubs/db/backends/base/client.pyi

10 lines
274 B
Python

from typing import Any
from django.db.backends.base.base import BaseDatabaseWrapper
class BaseDatabaseClient:
executable_name: Any = ...
connection: Any = ...
def __init__(self, connection: BaseDatabaseWrapper) -> None: ...
def runshell(self) -> None: ...