import { DirectiveBinding } from 'vue'; declare global { interface HTMLElement { vFocusJumpParam: FocusJumpParam; } } type FocusJumpParam = { next?: string | HTMLElement | (() => string | HTMLElement | undefined); prev?: string | HTMLElement | (() => string | HTMLElement | undefined); }; /** * tab 키를 눌러 focus 이동할 때, 다음 focus element, 이전 focus element 를 지정한다. */ declare const VFocusJump: { mounted: (el: Element, binding: DirectiveBinding) => void; updated: (el: Element, binding: DirectiveBinding) => void; }; export default VFocusJump;