jodit-pro
Version:
PRO Version of Jodit Editor
29 lines (28 loc) • 847 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 { IJodit } from "jodit/esm/types/index";
import { UIElement } from "jodit/esm/core/ui/element";
import type { ISnapshotItem } from "../interface";
export declare class UIBackupBox extends UIElement<IJodit> {
/** @override */
className(): string;
private list;
private preview;
private latestSelected;
constructor(jodit: IJodit);
build(items: ISnapshotItem[]): void;
/** @override */
destruct(): void;
/**
* On select item inside list
*/
private onSelectItem;
/**
* On choose item inside list
*/
private onChooseItem;
chooseSelected(): void;
}