Operand

do no harem.

gram: docs

> ./packages/vue/src/plugin-api/index.ts

/**
* @eigenpal/docx-editor-vue/plugin-api
*
* Generic plugin interface and host component for integrating external
* plugins with the Vue editor. Pairs with the framework-agnostic plugin
* types exported from `@eigenpal/docx-editor-core/plugin-api`.
*
* @example
* ```ts
* import { PluginHost, type EditorPlugin } from '@eigenpal/docx-editor-vue/plugin-api';
* ```
*
* @packageDocumentation
* @public
*/
export { default as PluginHost } from './PluginHost.vue';
export { createRenderedDomContext, RenderedDomContextImpl } from './RenderedDomContext';
export type {
EditorPlugin,
EditorPluginCore,
PanelConfig,
PluginPanelProps,
PositionCoordinates,
RenderedDomContext,
VueEditorPlugin,
} from './types';