UNPKG

@ckeditor/ckeditor5-typing

Version:

Typing feature for CKEditor 5.

34 lines (33 loc) 823 B
/** * @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/typing */ import { Plugin } from '@ckeditor/ckeditor5-core'; import Input from './input.js'; import Delete from './delete.js'; /** * The typing feature. It handles typing. * * This is a "glue" plugin which loads the {@link module:typing/input~Input} and {@link module:typing/delete~Delete} * plugins. */ export default class Typing extends Plugin { static get requires() { return [Input, Delete]; } /** * @inheritDoc */ static get pluginName() { return 'Typing'; } /** * @inheritDoc */ static get isOfficialPlugin() { return true; } }