mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-17 17:35:59 +08:00
7 lines
278 B
Python
7 lines
278 B
Python
from django.core.management.base import CommandParser
|
|
|
|
|
|
class Command:
|
|
def add_arguments(self, parser: CommandParser) -> None: ...
|
|
def create_table(self, database: str, tablename: str, dry_run: bool) -> None: ...
|
|
def handle(self, *tablenames, **options) -> None: ... |