mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
12 lines
259 B
TypeScript
12 lines
259 B
TypeScript
import tabbable = require('tabbable');
|
|
|
|
const el = document.createElement('div');
|
|
tabbable(el);
|
|
tabbable(el, { includeContainer: true });
|
|
|
|
tabbable(document);
|
|
tabbable(document, { includeContainer: true });
|
|
|
|
tabbable.isTabbable(el);
|
|
tabbable.isFocusable(el);
|