UNPKG

jodit

Version:

Jodit is an awesome and useful wysiwyg editor with filebrowser

29 lines (28 loc) 857 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 */ /** * [[include:plugins/link/README.md]] * @packageDocumentation * @module plugins/link */ import type { IJodit } from "../../types/index"; import { Plugin } from "../../core/plugin/index"; import "./config"; /** * Process link. Insert, dblclick or remove format */ export declare class link extends Plugin { /** @override */ buttons: Plugin['buttons']; /** @override */ protected afterInit(jodit: IJodit): void; private __onDblClickOnLink; private onProcessPasteLink; private __generateForm; /** @override */ protected beforeDestruct(jodit: IJodit): void; private __onClickReadOnlyLink; }