jodit-pro
Version:
PRO Version of Jodit Editor
13 lines (12 loc) • 582 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 { DeepPartial, IJodit } from "jodit/esm/types/index";
import { UIElement } from "jodit/esm/core/ui/element";
export declare class UIWysiwyg extends UIElement {
className(): string;
constructor(jodit: UIElement['jodit'], options: DeepPartial<IJodit['options']>, value: string, onChange: (value: string) => void);
protected render(): string;
}