DefinitelyTyped/types/jquery-focusable/jquery-focusable-tests.ts
2018-04-14 12:17:15 -07:00

13 lines
226 B
TypeScript

import { Options } from "jquery-focusable";
// Basic usage
$('body').focusable();
// With options
const options: Options = {
findNegativeTabindex: true,
findPositiveTabindex: true
};
$('body').focusable(options);