@@ -729,23 +729,8 @@ declare module Slick {
729
729
* @param options Additional options. See Grid Options for a list of options that can be included.
730
730
**/
731
731
constructor (
732
- container : string ,
733
- data : T [ ] ,
734
- columns : Column < T > [ ] ,
735
- options : GridOptions < T > ) ;
736
- constructor (
737
- container : HTMLElement ,
738
- data : T [ ] ,
739
- columns : Column < T > [ ] ,
740
- options : GridOptions < T > ) ;
741
- constructor (
742
- container : string ,
743
- data : DataProvider < T > ,
744
- columns : Column < T > [ ] ,
745
- options : GridOptions < T > ) ;
746
- constructor (
747
- container : HTMLElement ,
748
- data : DataProvider < T > ,
732
+ container : string | HTMLElement | JQuery ,
733
+ data : T [ ] | DataProvider < T > ,
749
734
columns : Column < T > [ ] ,
750
735
options : GridOptions < T > ) ;
751
736
@@ -1169,6 +1154,7 @@ declare module Slick {
1169
1154
public invalidate ( ) : void ;
1170
1155
public invalidateRow ( row : number ) : void ;
1171
1156
public invalidateRows ( rows : number [ ] ) : void ;
1157
+ public invalidateAllRows ( ) : void ;
1172
1158
public updateCell ( row : number , cell : number ) : void ;
1173
1159
public updateRow ( row : number ) : void ;
1174
1160
public getViewport ( viewportTop ?: number , viewportLeft ?: number ) : Viewport ;
@@ -1707,7 +1693,7 @@ declare module Slick {
1707
1693
1708
1694
export class Plugin < T extends Slick . SlickData > {
1709
1695
1710
- constructor ( options : PluginOptions ) ;
1696
+ constructor ( options ? : PluginOptions ) ;
1711
1697
public init ( grid : Grid < T > ) : void ;
1712
1698
public destroy ( ) : void ;
1713
1699
}
0 commit comments