grapesjs-clot
Version:
Free and Open Source Web Builder Framework
30 lines (25 loc) • 470 B
JavaScript
import Dragger from './Dragger';
import Sorter from './Sorter';
import Resizer from './Resizer';
import * as mixins from './mixins';
export default () => {
return {
/**
* Name of the module
* @type {String}
* @private
*/
name: 'Utils',
/**
* Initialize module
*/
init() {
return this;
},
destroy() {},
Sorter,
Resizer,
Dragger,
helpers: { ...mixins }
};
};