diff --git a/src/runtime/internal/dom.js b/src/runtime/internal/dom.js index e7d3443411..401543b274 100644 --- a/src/runtime/internal/dom.js +++ b/src/runtime/internal/dom.js @@ -1,17 +1,19 @@ import { ResizeObserverSingleton } from './ResizeObserverSingleton.js'; -import { contenteditable_truthy_values, has_prop } from './utils'; +import { contenteditable_truthy_values, has_prop } from './utils.js'; // Track which nodes are claimed during hydration. Unclaimed nodes can then be removed from the DOM // at the end of hydration without touching the remaining nodes. let is_hydrating = false; /** - * @returns {void} */ + * @returns {void} + */ export function start_hydrating() { is_hydrating = true; } /** - * @returns {void} */ + * @returns {void} + */ export function end_hydrating() { is_hydrating = false; } @@ -46,7 +48,8 @@ function init_hydrate(target) { // We know that all children have claim_order values since the unclaimed have been detached if target is not
/** - * @type {ArrayLike