mirror of
https://github.com/davidhalter/django-stubs.git
synced 2026-02-27 12:02:20 +08:00
14 lines
495 B
Python
14 lines
495 B
Python
from django.core.management.base import CommandParser
|
|
from django.db.backends.sqlite3.base import DatabaseWrapper
|
|
from typing import (
|
|
Any,
|
|
List,
|
|
Set,
|
|
)
|
|
|
|
|
|
class Command:
|
|
def _run_checks(self, **kwargs) -> List[Any]: ...
|
|
def add_arguments(self, parser: CommandParser) -> None: ...
|
|
def migration_progress_callback(self, action: str, migration: Any = ..., fake: bool = ...) -> None: ...
|
|
def sync_apps(self, connection: DatabaseWrapper, app_labels: Set[str]) -> None: ... |