Files
web/public/tinymce/src/plugins/visualblocks/main/ts/api/Events.ts
2025-10-22 15:39:40 +08:00

14 lines
387 B
TypeScript

/**
* Copyright (c) Tiny Technologies, Inc. All rights reserved.
* Licensed under the LGPL or a commercial license.
* For LGPL see License.txt in the project root for license information.
* For commercial licenses see https://www.tiny.cloud/
*/
const fireVisualBlocks = function (editor, state) {
editor.fire('VisualBlocks', { state });
};
export default {
fireVisualBlocks
};