DefinitelyTyped/types/tabbable/tabbable-tests.ts
2018-09-21 02:48:06 -07:00

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);