UNPKG

jodit

Version:

Jodit is an awesome and useful wysiwyg editor with filebrowser

26 lines (25 loc) 828 B
/*! * Jodit Editor (https://xdsoft.net/jodit/) * Released under MIT see LICENSE.txt in the project root for license information. * Copyright (c) 2013-2025 Valeriy Chupurnov. All rights reserved. https://xdsoft.net */ /** * @module types */ import type { IDestructible, IInitable } from "./types"; export interface ISourceEditor extends IDestructible, IInitable { getValue(): string; setValue(raw: string): void; insertRaw(raw: string): void; getSelectionEnd(): number; getSelectionStart(): number; setSelectionRange(start: number, end: number): void; setPlaceHolder(title: string): void; readonly isFocused: boolean; focus(): void; blur(): void; setReadOnly(isReadOnly: boolean): void; selectAll(): void; isReady: boolean; onReadyAlways(callback: Function): void; }