| 66 | } |
| 67 | |
| 68 | interface FixedColumnsMethods<T> extends Api<T> { |
| 69 | /** |
| 70 | * Get the number of columns fixed at the end of the table |
| 71 | * |
| 72 | * @returns Count |
| 73 | */ |
| 74 | end(): number; |
| 75 | |
| 76 | /** |
| 77 | * Set the number of columns fixed at the end of the table |
| 78 | * |
| 79 | * @returns DataTables API instance |
| 80 | */ |
| 81 | end(count: number): Api<T>; |
| 82 | |
| 83 | /** |
| 84 | * Get the number of columns fixed at the left of the table |
| 85 | * |
| 86 | * @returns Count |
| 87 | */ |
| 88 | left(): number; |
| 89 | |
| 90 | /** |
| 91 | * Set the number of columns fixed at the left of the table |
| 92 | * |
| 93 | * @returns DataTables API instance |
| 94 | */ |
| 95 | left(count: number): Api<T>; |
| 96 | |
| 97 | /** |
| 98 | * Get the number of columns fixed at the right of the table |
| 99 | * |
| 100 | * @returns Count |
| 101 | */ |
| 102 | right(): number; |
| 103 | |
| 104 | /** |
| 105 | * Set the number of columns fixed at the right of the table |
| 106 | * |
| 107 | * @returns DataTables API instance |
| 108 | */ |
| 109 | right(count: number): Api<T>; |
| 110 | |
| 111 | /** |
| 112 | * Get the number of columns fixed at the start of the table |
| 113 | * |
| 114 | * @returns Count |
| 115 | */ |
| 116 | start(): number; |
| 117 | |
| 118 | /** |
| 119 | * Set the number of columns fixed at the start of the table |
| 120 | * |
| 121 | * @returns DataTables API instance |
| 122 | */ |
| 123 | start(count: number): Api<T>; |
| 124 | } |
| 125 | } |
no outgoing calls
no test coverage detected