observer.js 298 B

123456789101112131415161718192021
  1. /**
  2. * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see LICENSE.md.
  4. */
  5. 'use strict';
  6. export default class Observer {
  7. /**
  8. * @method attach
  9. */
  10. /**
  11. * @method detach
  12. */
  13. /**
  14. * @method init
  15. * @param {treeView.TreeView}
  16. */
  17. }