tutuca 0.9.44 → 0.9.45

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.
@@ -7975,6 +7975,9 @@ var macro = (defaults, rawView) => new Macro(defaults, rawView);
7975
7975
  function check(_app) {
7976
7976
  return { error: 0, warn: 0, hint: 0, dummyCheck: true };
7977
7977
  }
7978
+ async function test(_opts) {
7979
+ return null;
7980
+ }
7978
7981
  function tutuca(nodeOrSelector) {
7979
7982
  const rootNode = typeof nodeOrSelector === "string" ? document.querySelector(nodeOrSelector) : nodeOrSelector;
7980
7983
  const comps = new Components;
@@ -8008,6 +8011,7 @@ export {
8008
8011
  updateIn$1 as updateIn,
8009
8012
  update$1 as update,
8010
8013
  tutuca,
8014
+ test,
8011
8015
  setIn$1 as setIn,
8012
8016
  set,
8013
8017
  removeIn,