File tree 1 file changed +7
-4
lines changed
1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -8,15 +8,18 @@ declare namespace DataTables {
8
8
9
9
interface ColResizeSettings {
10
10
isEnabled ?: boolean ;
11
+ saveState ?: boolean ;
11
12
hoverClass ?: string ;
12
13
hasBoundCheck ?: boolean ;
13
14
minBoundClass ?: string ;
14
15
maxBoundClass ?: string ;
15
- isResizable ?: ( column : ColumnLegacy ) => boolean ;
16
- onResizeStart ?: ( column : ColumnLegacy , columns : ( ColumnLegacy ) [ ] ) => void ;
16
+ isResizable ?: ( column : ColumnLegacy ) => boolean ;
17
+ onResizeStart ?: ( column : ColumnLegacy , columns : ( ColumnLegacy ) [ ] ) => void ;
17
18
onResize ?: ( column : ColumnLegacy ) => void ;
18
- onResizeEnd ?: ( column : ColumnLegacy , columns : ( ColumnLegacy ) [ ] ) => void ;
19
- getMinWidthOf ?: ( $thNode : JQuery < HTMLTableCellElement > ) => number ;
19
+ onResizeEnd ?: ( column : ColumnLegacy , columns : ( ColumnLegacy ) [ ] ) => void ;
20
+ getMinWidthOf ?: ( $thNode : JQuery < HTMLTableCellElement > ) => number ;
21
+ stateSaveCallback ?: ( settings : DataTables . ColResizeSettings , data : any [ ] ) => void ;
22
+ stateLoadCallback ?: ( settings : DataTables . ColResizeSettings ) => void ;
20
23
}
21
24
22
25
interface Api {
You can’t perform that action at this time.
0 commit comments