@empathyco/x-components
Version:
Empathy X Components
24 lines (21 loc) • 744 B
JavaScript
import '../../plugins/x-bus.js';
import '@empathyco/x-utils';
import { XPlugin } from '../../plugins/x-plugin.js';
import { extraParamsEmitters } from './store/emitters.js';
import { extraParamsXStoreModule } from './store/module.js';
import { extraParamsWiring } from './wiring.js';
/**
* ExtraParams {@link XModule} implementation. This module is auto-registered as soon as you
* import any component from the `extraParams` entry point.
*
* @public
*/
const extraParamsXModule = {
name: 'extraParams',
storeModule: extraParamsXStoreModule,
storeEmitters: extraParamsEmitters,
wiring: extraParamsWiring,
};
XPlugin.registerXModule(extraParamsXModule);
export { extraParamsXModule };
//# sourceMappingURL=x-module.js.map