mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-09 21:46:43 +08:00
17 lines
319 B
Python
17 lines
319 B
Python
from typing import Any, Optional
|
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class StaticFilesConfig(AppConfig):
|
|
apps: None
|
|
label: str
|
|
models: None
|
|
models_module: None
|
|
module: Any
|
|
path: str
|
|
name: str = ...
|
|
verbose_name: Any = ...
|
|
ignore_patterns: Any = ...
|
|
def ready(self) -> None: ...
|