25 lines
672 B
TypeScript
25 lines
672 B
TypeScript
/*!
|
|
* 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
|
|
*/
|
|
import { Plugin } from "../../core/plugin/plugin";
|
|
/**
|
|
* Show dialog choose content to paste
|
|
*/
|
|
export declare class pasteStorage extends Plugin {
|
|
private currentIndex;
|
|
private list;
|
|
private container;
|
|
private listBox;
|
|
private previewBox;
|
|
private dialog;
|
|
private paste;
|
|
private onKeyDown;
|
|
private selectIndex;
|
|
private showDialog;
|
|
private createDialog;
|
|
afterInit(): void;
|
|
beforeDestruct(): void;
|
|
}
|