123456789101112131415161718192021222324252627282930 |
- export declare const isVisible: (element: HTMLElement) => boolean;
- export declare const obtainAllFocusableElements: (element: HTMLElement) => HTMLElement[];
- export declare const isFocusable: (element: HTMLElement) => boolean;
- export declare const attemptFocus: (element: HTMLElement) => boolean;
- export declare const triggerEvent: (elm: HTMLElement, name: string, ...opts: Array<boolean>) => HTMLElement;
- export declare const isLeaf: (el: HTMLElement) => boolean;
- export declare const getSibling: (el: HTMLElement, distance: number, elClass: string) => Element | null;
- export declare const focusNode: (el: HTMLElement) => void;
|