jodit-pro
Version:
PRO Version of Jodit Editor
15 lines (14 loc) • 686 B
TypeScript
/*!
* Jodit Editor PRO (https://xdsoft.net/jodit/)
* See LICENSE.md in the project root for license information.
* Copyright (c) 2013-2026 Valerii Chupurnov. All rights reserved. https://xdsoft.net/jodit/pro/
*/
import type { PastedData, PasteEvent } from "jodit/esm/plugins/paste/interface";
import type { InsertMode } from "jodit/esm/types/index";
import "./config";
import { pasteFromWord } from "jodit/esm/plugins/paste-from-word/paste-from-word";
export declare class PasteFromWordPro extends pasteFromWord {
/** @override */
static requires: string[];
protected insertFromWordByType(e: PasteEvent, html: string, insertType: InsertMode, texts: PastedData): void;
}