@progress/kendo-angular-editor
Version:
Kendo UI Editor for Angular
28 lines (27 loc) • 1.17 kB
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { PreventableEvent } from "./preventable-event";
/**
* Fires when the Editor [`paste`](https://www.telerik.com/kendo-angular-ui/components/editor/api/editorcomponent#paste) event occurs.
*/
export declare class EditorPasteEvent extends PreventableEvent {
/**
* Contains the HTML content cleaned according to the [`PasteCleanupSettings`](https://www.telerik.com/kendo-angular-ui/components/editor/paste-cleanup).
*/
cleanedHtml: string;
/**
* Contains the raw pasted content.
*/
originalHtml: string;
/**
* Contains the original DOM event.
*/
originalEvent: ClipboardEvent;
/**
* Constructs the event arguments for the `paste` event.
* @hidden
*/
constructor(cleanedHtml: string, originalHtml: string, originalEvent: ClipboardEvent);
}