Interface EditorPluginManager

interface EditorPluginManager {
    closePluginPanel: (() => void);
    getEditor: (() => Editor);
    getEvents: (() => EventManager<EditorEventPayloadMap>);
    getOptions: (() => PluginManagerOptions);
    getPlugins: (() => EditorPlugin[]);
    getTransformedContent: ((rawContent: string) => string);
    openPluginPanel: ((plug: EditorPlugin) => void);
    get<T>(plug: T): undefined | InstanceType<T>;
}

Properties

closePluginPanel: (() => void)
getEditor: (() => Editor)
getEvents: (() => EventManager<EditorEventPayloadMap>)
getOptions: (() => PluginManagerOptions)
getPlugins: (() => EditorPlugin[])
getTransformedContent: ((rawContent: string) => string)
openPluginPanel: ((plug: EditorPlugin) => void)

Methods