UNPKG

334 BTypeScriptView Raw
1interface FocusNextOptions {
2 scope?: HTMLElement | HTMLDocument;
3 cycle?: boolean;
4 focusOptions?: FocusOptions;
5}
6export declare const focusNextElement: (baseElement: Element, options?: FocusNextOptions) => void;
7export declare const focusPrevElement: (baseElement: Element, options?: FocusNextOptions) => void;
8export {};