package.dist.util.FocusableElements.d.ts Maven / Gradle / Ivy
type FocusableElementPromise = Promise;
declare const getFirstFocusableElement: (container: HTMLElement, startFromContainer?: boolean) => FocusableElementPromise;
declare const getLastFocusableElement: (container: HTMLElement, startFromContainer?: boolean) => FocusableElementPromise;
export { getFirstFocusableElement, getLastFocusableElement, };