| 18 | } |
| 19 | |
| 20 | interface FixedColumnsConfig { |
| 21 | /** |
| 22 | * The number of columns to fix at the end of the table (ltr and rtl aware) |
| 23 | */ |
| 24 | end?: number; |
| 25 | |
| 26 | i18n?: { |
| 27 | /** Text for `fixedColumns` button */ |
| 28 | button?: string; |
| 29 | }; |
| 30 | |
| 31 | /** |
| 32 | * The number of columns on the left hand side of the table to fix in place. |
| 33 | */ |
| 34 | left?: number; |
| 35 | |
| 36 | /** |
| 37 | * The number of columns on the left hand side of the table to fix in place. |
| 38 | * @deprecated Use `start` |
| 39 | */ |
| 40 | leftColumns?: number; |
| 41 | |
| 42 | /** |
| 43 | * The number of columns on the right hand side of the table to fix in place. |
| 44 | */ |
| 45 | right?: number; |
| 46 | |
| 47 | /** |
| 48 | * The number of columns on the right hand side of the table to fix in place. |
| 49 | * @deprecated Use `end` |
| 50 | */ |
| 51 | rightColumns?: number; |
| 52 | |
| 53 | /** |
| 54 | * The number of columns to fix at the start of the table (ltr and rtl aware) |
| 55 | */ |
| 56 | start?: number; |
| 57 | } |
| 58 | |
| 59 | interface Api<T> { |
| 60 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected