UNPKG

@base-ui/react

Version:

Base UI is a library of headless ('unstyled') React components and low-level hooks. You gain complete control over your app's CSS and accessibility features.

9 lines 340 B
import { NOOP } from '@base-ui/utils/empty'; import type { FocusableElement } from "./tabbable.js"; interface Options { preventScroll?: boolean | undefined; cancelPrevious?: boolean | undefined; sync?: boolean | undefined; } export declare function enqueueFocus(el: FocusableElement | null, options?: Options): typeof NOOP; export {};