mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-04-10 15:44:26 +00:00
* Update index.d.ts Added missing some enum values to predefined types (according to tabulator documentation/examples) * Update index.d.ts Replaced Function with specific function type * Update index.d.ts Updated onRendered type for Formatter type definition * Updated Formatter definition. Updated tabulator-tables-tests according Formatter definition * Update tabulator-tables-tests.ts Fixed Tabulator.EmptyCallback reference in tabulator-tables-tests * Updated ColumnDefinition.align and Tabulator.element ColumnDefinition.align: cannot by "left" | "center" | "right" (not types). Use intead a type as type ColumnDefinitionAlign = "left" | "center" | "right"; Tabulator class implicity has element property. In tabulator source code there are some this.element references