9 lines
201 B
TypeScript
9 lines
201 B
TypeScript
interface FocusableIn {
|
|
node: HTMLElement;
|
|
index: number;
|
|
lockItem: boolean;
|
|
guard: boolean;
|
|
}
|
|
export declare const getFocusabledIn: (topNode: HTMLElement) => FocusableIn[];
|
|
export {};
|