| 123456789101112131415161718192021222324252627282930 |
- /**
- * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
- */
- /**
- * @module typing/typing
- */
- import Plugin from '@ckeditor/ckeditor5-core/src/plugin';
- import Input from './input';
- import Delete from './delete';
- /**
- * The typing feature. Handles typing.
- *
- * @extends module:core/plugin~Plugin
- */
- export default class Typing extends Plugin {
- static get requires() {
- return [ Input, Delete ];
- }
- /**
- * @inheritDoc
- */
- static get pluginName() {
- return 'Typing';
- }
- }
|