microboard-temp 0.1.2 → 0.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Binary file
package/dist/cjs/index.js CHANGED
@@ -2130,6 +2130,7 @@ __export(exports_src, {
2130
2130
  fileTosha256: () => fileTosha256,
2131
2131
  decodeHtml: () => decodeHtml,
2132
2132
  cursors: () => defaultCursors,
2133
+ createEvents: () => createEvents,
2133
2134
  conf: () => conf,
2134
2135
  checkHotkeys: () => checkHotkeys,
2135
2136
  Transformation: () => Transformation,
@@ -46579,3 +46580,6 @@ class Events {
46579
46580
  return userId + ":" + id;
46580
46581
  }
46581
46582
  }
46583
+ function createEvents(board, connection, lastIndex) {
46584
+ return new Events(board, connection, lastIndex);
46585
+ }