UNPKG

rhino-editor

Version:

A custom element wrapped rich text editor

16 lines (14 loc) 424 B
// src/exports/events/base-event.ts var BaseEvent = class extends Event { constructor(name, options) { if (options == null) options = {}; if (options.bubbles == null) options.bubbles = true; if (options.composed == null) options.composed = true; if (options.cancelable == null) options.cancelable = true; super(name, options); } }; export { BaseEvent }; //# sourceMappingURL=chunk-A753ZYET.js.map