mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-08 21:14:49 +08:00
11 lines
297 B
Python
11 lines
297 B
Python
from typing import Any, Dict, Optional
|
|
|
|
from django.db.backends.base.client import BaseDatabaseClient
|
|
|
|
|
|
class DatabaseClient(BaseDatabaseClient):
|
|
executable_name: str = ...
|
|
@classmethod
|
|
def runshell_db(cls, conn_params: Dict[str, str]) -> None: ...
|
|
def runshell(self) -> None: ...
|