tab.d.ts 161 B

123456
  1. interface tabOptions {
  2. shift?: boolean;
  3. focusTrap?: Document | Element;
  4. }
  5. declare function tab({ shift, focusTrap }?: tabOptions): void;
  6. export { tab };