jodit-pro
Version:
PRO Version of Jodit Editor
16 lines (15 loc) • 605 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 { Jodit } from "jodit/esm/index";
import { Config } from "./config";
import type { DeepPartial } from "jodit/esm/types/types";
export declare class JoditPro extends Jodit {
static make(element: HTMLElement | string, options?: DeepPartial<Config>): JoditPro;
beforeInitHook(): Promise<void> | void;
afterInitHook(): void;
/** @override */
getVersion(): string;
}