DefinitelyTyped/types/datatables.net-keytable/datatables.net-keytable-tests.ts
Konstantin 6968096151 Type definitions for datatables.net-fixedcolumns (#36816)
* Create index.d.ts

* Create LICENSE

* Create README.md

* Update README.md

* Create package.json

* Delete LICENSE

* Delete README.md

* Delete package.json

* Create datatables.net-fixedcolumns-tests.ts

* Create tslint.json

* Create tsconfig.json

* changes after tslint

* formatting

* formatting

* formatting

* correct return types
add deprecation comments

* Type definitions for datatables.net-keytable
2019-07-11 16:22:07 -07:00

18 lines
477 B
TypeScript

$(document).ready(() => {
const config: DataTables.Settings = {
// KeyTable extension options
keys: {
blurable: true,
className: "focusClass",
clipboard: false,
columns: ":not(:first-child)",
editOnFocus: false,
focus: ":eq(0)",
tabIndex: 2,
keys: [ "\t".charCodeAt(0) ],
clipboardOrthogonal: 'export',
editor: null
}
};
});