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