import type { Action } from 'svelte/action'; /** * Focuses the given HTML element. * @param node - The HTML element to focus. */ export const focus: Action = (node) => { node.focus(); };