UNPKG

jodit

Version:

Jodit is an awesome and useful wysiwyg editor with filebrowser

15 lines (14 loc) 642 B
/*! * Jodit Editor (https://xdsoft.net/jodit/) * Released under MIT see LICENSE.txt in the project root for license information. * Copyright (c) 2013-2025 Valeriy Chupurnov. All rights reserved. https://xdsoft.net */ /** * @module plugin */ import type { IJodit, Nullable, PluginInstance, PluginType } from "../../../types/index"; /** * Init plugin if it has no dependencies, in another case wait requires plugins will be init * @private */ export declare function init(jodit: IJodit, pluginName: string, plugin: PluginType, instance: PluginInstance, doneList: Map<string, Nullable<PluginInstance>>, waitingList: Set<string>): void;