@umbraco-cms/backoffice 14.0.0--preview004-37a447e4 → 14.0.0--preview004-46945657

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -6,12 +6,13 @@
6
6
  *
7
7
  * TODO: Load the plugins that we want to use in the editor.
8
8
  */
9
- import * as tiny from '../../tinymce';
9
+ import tinymce, { type RawEditorOptions } from '../../tinymce';
10
10
  declare global {
11
11
  interface Window {
12
- tinymce: typeof tiny.default;
12
+ tinymce: typeof tinymce;
13
13
  }
14
14
  }
15
15
  import '../../tinymce/icons/default/icons.js';
16
- export declare function renderEditor(userConfig?: tiny.RawEditorOptions): Promise<tiny.Editor[]>;
17
- export { tiny as tinymce };
16
+ export declare function renderEditor(userConfig?: RawEditorOptions): Promise<import("../../tinymce").Editor[]>;
17
+ export { tinymce };
18
+ export type { RawEditorOptions, AstNode, EditorEvent, Editor } from '../../tinymce';