@ckeditor/ckeditor5-typing
Version:
Typing feature for CKEditor 5.
38 lines (37 loc) • 916 B
TypeScript
/**
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
*/
/**
* @module typing/texttransformation
*/
import { Plugin, type Editor } from '@ckeditor/ckeditor5-core';
/**
* The text transformation plugin.
*/
export default class TextTransformation extends Plugin {
/**
* @inheritDoc
*/
static get requires(): readonly ["Delete", "Input"];
/**
* @inheritDoc
*/
static get pluginName(): "TextTransformation";
/**
* @inheritDoc
*/
static get isOfficialPlugin(): true;
/**
* @inheritDoc
*/
constructor(editor: Editor);
/**
* @inheritDoc
*/
init(): void;
/**
* Create new TextWatcher listening to the editor for typing and selection events.
*/
private _enableTransformationWatchers;
}