diff --git a/stubs/yt-dlp/yt_dlp/__init__.pyi b/stubs/yt-dlp/yt_dlp/__init__.pyi index 934930379ec9..4f3733dd8551 100644 --- a/stubs/yt-dlp/yt_dlp/__init__.pyi +++ b/stubs/yt-dlp/yt_dlp/__init__.pyi @@ -223,6 +223,7 @@ class _Params(TypedDict, total=False): write_pages: bool | None external_downloader_args: Literal["default"] | Mapping[str, Collection[str]] | Collection[str] | None postprocessor_args: Mapping[str, Collection[str]] | Collection[str] | None + postprocessor_hooks: Iterable[Callable[[dict[str, Any]], object]] geo_verification_proxy: str | None geo_bypass: bool | None geo_bypass_country: str | None @@ -230,6 +231,7 @@ class _Params(TypedDict, total=False): useid: bool | None compat_opts: dict[str, Any] | None logger: _LoggerProtocol + post_hooks: Iterable[Callable[[Incomplete], object] # Undocumented fields below. _deprecation_warnings: Collection[str] | None _warnings: Collection[str] | None