545c27b18327474d02f59a0005b0659387166861b9199993187a56a81ac6a99e02e006a124fa90b7e2c1ae8a744ceb2b4af5c9444e39e626c91a8f0782cea7 470 B

12345678
  1. import type { HTMLAttributes } from 'vue';
  2. type Orientation = HTMLAttributes['aria-orientation'];
  3. type Direction = 'ltr' | 'rtl';
  4. type FocusIntent = 'first' | 'last' | 'prev' | 'next';
  5. export declare const getFocusIntent: (event: KeyboardEvent, orientation?: Orientation, dir?: Direction) => FocusIntent | undefined;
  6. export declare const reorderArray: <T>(array: T[], atIdx: number) => T[];
  7. export declare const focusFirst: (elements: HTMLElement[]) => void;
  8. export {};