mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* 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
11 lines
248 B
TypeScript
11 lines
248 B
TypeScript
$(document).ready(() => {
|
|
const config: DataTables.Settings = {
|
|
// FixedColumns extension options
|
|
fixedColumns: {
|
|
heightMatch: 'semiauto',
|
|
leftColumns: 2,
|
|
rightColumns: 1
|
|
}
|
|
};
|
|
});
|