| 12345678910111213141516171819202122232425 |
- /**
- * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
- */
- 'use strict';
- CKEDITOR.define( [], () => {
- class Observer {
- /**
- * @method init
- * @param {treeView.TreeView}
- */
- /**
- * @method attach
- */
- /**
- * @method detach
- */
- }
- return Observer;
- } );
|