Skip to content

Commit

Permalink
Add ManifestStaticFilesStorage new parameters (#1528)
Browse files Browse the repository at this point in the history
* Add ManifestStaticFilesStorage new parameters

* Move props to top of class
  • Loading branch information
Alexerson authored Jun 5, 2023
1 parent 4ac6486 commit bc54631
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions django-stubs/contrib/staticfiles/storage.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ class StaticFilesStorage(FileSystemStorage):
class HashedFilesMixin:
default_template: str
max_post_process_passes: int
support_js_module_import_aggregation: bool
patterns: Any
hashed_files: Any
keep_intermediate_files: bool
Expand All @@ -38,6 +39,9 @@ class ManifestFilesMixin(HashedFilesMixin):
manifest_name: str
manifest_strict: bool
keep_intermediate_files: bool
manifest_storage: Storage | None
hashed_files: dict[str, str]
manifest_hash: str
def __init__(self, *args: Any, **kwargs: Any) -> None: ...
def read_manifest(self) -> str: ...
def load_manifest(self) -> dict[str, Any]: ...
Expand Down

0 comments on commit bc54631

Please sign in to comment.