File size: 333 Bytes
bc20498
 
 
 
 
 
 
1
2
3
4
5
6
7
8
export declare function focus(element: unknown): void;
/**
 * Returns a list of nodes that can be in the tab sequence.
 * @see: https://developer.mozilla.org/en-US/docs/Web/API/TreeWalker
 */
export declare function getTabbableNodes(container: HTMLElement): HTMLElement[];
export declare function isHidden(el: HTMLElement): boolean;