UNPKG

201 BTypeScriptView Raw
1interface FocusableIn {
2 node: HTMLElement;
3 index: number;
4 lockItem: boolean;
5 guard: boolean;
6}
7export declare const getFocusabledIn: (topNode: HTMLElement) => FocusableIn[];
8export {};