mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-19 02:15:59 +08:00
initial commit
This commit is contained in:
14
django/core/management/commands/makemigrations.pyi
Normal file
14
django/core/management/commands/makemigrations.pyi
Normal file
@@ -0,0 +1,14 @@
|
||||
from django.core.management.base import CommandParser
|
||||
from django.db.migrations.loader import MigrationLoader
|
||||
from django.db.migrations.migration import Migration
|
||||
from typing import (
|
||||
Dict,
|
||||
List,
|
||||
Set,
|
||||
)
|
||||
|
||||
|
||||
class Command:
|
||||
def add_arguments(self, parser: CommandParser) -> None: ...
|
||||
def handle_merge(self, loader: MigrationLoader, conflicts: Dict[str, Set[str]]) -> None: ...
|
||||
def write_migration_files(self, changes: Dict[str, List[Migration]]) -> None: ...
|
||||
Reference in New Issue
Block a user