mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-09 05:24:53 +08:00
15 lines
527 B
Python
15 lines
527 B
Python
from typing import Any, Optional
|
|
|
|
from django.core.management.base import BaseCommand, CommandParser
|
|
|
|
|
|
class Command(BaseCommand):
|
|
stderr: django.core.management.base.OutputWrapper
|
|
stdout: django.core.management.base.OutputWrapper
|
|
style: django.core.management.color.Style
|
|
help: str = ...
|
|
output_transaction: bool = ...
|
|
def add_arguments(self, parser: CommandParser) -> None: ...
|
|
def execute(self, *args: Any, **options: Any) -> str: ...
|
|
def handle(self, *args: Any, **options: Any) -> str: ...
|