typing.js 449 B

1234567891011121314151617181920212223
  1. /**
  2. * @license Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see LICENSE.md.
  4. */
  5. /**
  6. * @module typing/typing
  7. */
  8. import Plugin from '../core/plugin.js';
  9. import Input from './input.js';
  10. import Delete from './delete.js';
  11. /**
  12. * The typing feature. Handles typing.
  13. *
  14. * @extends core.Plugin
  15. */
  16. export default class Typing extends Plugin {
  17. static get requires() {
  18. return [ Input, Delete ];
  19. }
  20. }