diff --git a/CHANGELOG.md b/CHANGELOG.md index 3b229c20..3bba0941 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +### Fixed +- `EventObj` interface not being importable. + ## 9.1.0 - 2025-07-31 ### Changed diff --git a/tinymce-angular-component/src/main/ts/public_api.ts b/tinymce-angular-component/src/main/ts/public_api.ts index a00d0a8a..28207bfb 100644 --- a/tinymce-angular-component/src/main/ts/public_api.ts +++ b/tinymce-angular-component/src/main/ts/public_api.ts @@ -1,2 +1,3 @@ export * from './editor/editor.module'; +export { EventObj } from './editor/Events'; export { EditorComponent, TINYMCE_SCRIPT_SRC } from './editor/editor.component';