mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-14 07:47:09 +08:00
11 lines
339 B
Python
11 lines
339 B
Python
from typing import Any
|
|
|
|
from django.http.request import HttpRequest
|
|
from django.http.response import HttpResponseBase
|
|
from django.utils.deprecation import MiddlewareMixin
|
|
|
|
re_accepts_gzip: Any
|
|
|
|
class GZipMiddleware(MiddlewareMixin):
|
|
def process_response(self, request: HttpRequest, response: HttpResponseBase) -> HttpResponseBase: ...
|