diff --git a/plugins/CHANGELOG.md b/plugins/CHANGELOG.md index a5d5faff84..5d0fb45dec 100644 --- a/plugins/CHANGELOG.md +++ b/plugins/CHANGELOG.md @@ -1,6 +1,7 @@ ## 1.5.0 (Unreleased) - **plugin-types**: Added a flags subcontexts with the flag `naturalChildrenOrdering` +- **plugin-types**: Fix missing `webp` export format in `Export.type` ## 1.4.2 (2026-01-21) diff --git a/plugins/libs/plugin-types/index.d.ts b/plugins/libs/plugin-types/index.d.ts index f1b1595aec..e1e2b87f8e 100644 --- a/plugins/libs/plugin-types/index.d.ts +++ b/plugins/libs/plugin-types/index.d.ts @@ -1534,9 +1534,9 @@ export interface EventsMap { */ export interface Export { /** - * Type of the file to export. Can be one of the following values: png, jpeg, svg, pdf + * Type of the file to export. Can be one of the following values: png, jpeg, webp, svg, pdf */ - type: 'png' | 'jpeg' | 'svg' | 'pdf'; + type: 'png' | 'jpeg' | 'webp' | 'svg' | 'pdf'; /** * For bitmap formats represent the scale of the original size to resize the export */