jodit-pro
Version:
PRO Version of Jodit Editor
25 lines (24 loc) • 911 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 { ModType } from "jodit/esm/types/index";
import { UIGroup } from "jodit/esm/core/ui/group/group";
import type { IFileBrowserStatePro } from "../../interface";
import { UIResize } from "../../../../traits/resize/resize";
export declare class UIPreview extends UIGroup implements UIResize {
protected readonly state: IFileBrowserStatePro;
/** @override */
className(): string;
/**
* Add handle resizer
*/
addResize(): void;
/** @override */
render(): string;
constructor(jodit: UIPreview['jodit'], state: IFileBrowserStatePro);
afterSetMod(name: string, value: ModType): void;
private lastLoadPromise;
private onChangeMetaInfo;
}