Spaces:
Paused
Paused
File size: 161 Bytes
b1bbd1e | 1 2 3 4 5 6 7 | interface tabOptions {
shift?: boolean;
focusTrap?: Document | Element;
}
declare function tab({ shift, focusTrap }?: tabOptions): void;
export { tab };
|