the-forest/client/node_modules/@testing-library/user-event/dist/tab.d.ts

7 lines
161 B
TypeScript
Raw Normal View History

2024-09-17 20:35:18 -04:00
interface tabOptions {
shift?: boolean;
focusTrap?: Document | Element;
}
declare function tab({ shift, focusTrap }?: tabOptions): void;
export { tab };