UNPKG

@empathyco/x-components

Version:
24 lines (21 loc) 422 B
import { XPriorityBus } from '../x-bus/x-bus.js'; /** * Default XBus implementation. * * @public */ const bus = new XPriorityBus({ priorities: { Updated: 2, Changed: 4, FromUrl: 8, User: 16, External: 32, Initialized: 64, Provided: 128, DataReceived: 256, ModuleRegistered: 512, }, }); export { bus }; //# sourceMappingURL=x-bus.js.map