mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-15 00:07:09 +08:00
move generated stubs to separate directory, too messty
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
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 = ...
|
||||
requires_system_checks: bool = ...
|
||||
def add_arguments(self, parser: CommandParser) -> None: ...
|
||||
verbosity: Any = ...
|
||||
def handle(self, *tablenames: Any, **options: Any) -> None: ...
|
||||
def create_table(
|
||||
self, database: str, tablename: str, dry_run: bool
|
||||
) -> None: ...
|
||||
Reference in New Issue
Block a user