UNPKG

jodit-pro

Version:

PRO Version of Jodit Editor

17 lines (16 loc) 604 B
/*! * 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/index"; import type { ISnapshotItem } from "../interface"; export declare class UIBackupItem extends UIElement<IJodit> { data: ISnapshotItem; /** @override */ className(): string; constructor(jodit: IJodit, data: ISnapshotItem); private formatDate; focus(): void; }