@@ -114,11 +114,11 @@ declare module uiGrid {
114
114
ROW : string ;
115
115
COLUMN : string ;
116
116
OPTIONS : string ;
117
- }
117
+ } ;
118
118
scrollbars : {
119
119
NEVER : number ;
120
120
ALWAYS : number ;
121
- }
121
+ } ;
122
122
}
123
123
export type IGridInstance = IGridInstanceOf < any > ;
124
124
export interface IGridInstanceOf < TEntity > {
@@ -1057,7 +1057,7 @@ declare module uiGrid {
1057
1057
* @param {sortChangedHandler } handler callback
1058
1058
*/
1059
1059
sortChanged : ( scope : ng . IScope , handler : sortChangedHandler < TEntity > ) => void ;
1060
- }
1060
+ } ;
1061
1061
}
1062
1062
export interface columnVisibilityChangedHandler < TEntity > {
1063
1063
/**
@@ -1211,7 +1211,7 @@ declare module uiGrid {
1211
1211
* @param {viewportKeyPressHandler } handler Callback
1212
1212
*/
1213
1213
viewportKeyPress : ( scope : ng . IScope , handler : viewportKeyPressHandler < TEntity > ) => void ;
1214
- }
1214
+ } ;
1215
1215
}
1216
1216
1217
1217
export interface navigateHandler < TEntity > {
@@ -1282,7 +1282,7 @@ declare module uiGrid {
1282
1282
KEYDOWN : number ;
1283
1283
CLICK : number ;
1284
1284
CLEAR : number ;
1285
- }
1285
+ } ;
1286
1286
}
1287
1287
}
1288
1288
@@ -1481,7 +1481,7 @@ declare module uiGrid {
1481
1481
BEGIN_CELL_EDIT : string ;
1482
1482
END_CELL_EDIT : string ;
1483
1483
CANCEL_CELL_EDIT : string ;
1484
- }
1484
+ } ;
1485
1485
}
1486
1486
}
1487
1487
@@ -1548,7 +1548,7 @@ declare module uiGrid {
1548
1548
* @param {rowExpandedStateChangedHandler } handler
1549
1549
*/
1550
1550
rowExpandedStateChanged : ( scope : ng . IScope , handler : rowExpandedStateChangedHandler < TEntity > ) => void ;
1551
- }
1551
+ } ;
1552
1552
}
1553
1553
1554
1554
export interface rowExpandedStateChangedHandler < TEntity > {
@@ -2300,7 +2300,7 @@ declare module uiGrid {
2300
2300
* @param {columnPositionChangedHandler } handler Callback Function
2301
2301
*/
2302
2302
columnPositionChanged ?: ( scope : ng . IScope , handler : columnPositionChangedHandler ) => void ;
2303
- }
2303
+ } ;
2304
2304
}
2305
2305
export interface columnPositionChangedHandler {
2306
2306
( colDef : IColumnDef , originalPosition : number , finalPosition : number ) : void ;
@@ -2387,7 +2387,7 @@ declare module uiGrid {
2387
2387
* @param {paginationChangedHandler } handler Callback
2388
2388
*/
2389
2389
paginationChanged : ( scope : ng . IScope , handler : paginationChangedHandler ) => void ;
2390
- }
2390
+ } ;
2391
2391
}
2392
2392
2393
2393
/**
@@ -2469,7 +2469,7 @@ declare module uiGrid {
2469
2469
LEFT : string ;
2470
2470
RIGHT : string ;
2471
2471
NONE : string ;
2472
- }
2472
+ } ;
2473
2473
}
2474
2474
}
2475
2475
@@ -2508,7 +2508,7 @@ declare module uiGrid {
2508
2508
* @param {columnSizeChangedHandler } handler Callback
2509
2509
*/
2510
2510
columnSizeChanged : ( scope : ng . IScope , handler : columnSizeChangedHandler ) => void ;
2511
- }
2511
+ } ;
2512
2512
}
2513
2513
2514
2514
export interface columnSizeChangedHandler {
@@ -2594,7 +2594,7 @@ declare module uiGrid {
2594
2594
* @param {saveRowHandler } handler Callback
2595
2595
*/
2596
2596
saveRow : ( scope : ng . IScope , handler : saveRowHandler < TEntity > ) => void ;
2597
- }
2597
+ } ;
2598
2598
}
2599
2599
2600
2600
export interface saveRowHandler < TEntity > {
@@ -2973,7 +2973,7 @@ declare module uiGrid {
2973
2973
* @param {rowSelectionChangedBatchHandler } handler callback
2974
2974
*/
2975
2975
rowSelectionChangedBatch : ( scope : ng . IScope , handler : rowSelectionChangedBatchHandler < TEntity > ) => void ;
2976
- }
2976
+ } ;
2977
2977
}
2978
2978
export interface rowSelectionChangedHandler < TEntity > {
2979
2979
/**
@@ -3206,13 +3206,13 @@ declare module uiGrid {
3206
3206
* @param {rowExpandedHandler } handler Callback
3207
3207
*/
3208
3208
rowExpanded : ( scope : ng . IScope , handler : rowExpandedHandler < TEntity > ) => void ;
3209
- }
3209
+ } ;
3210
3210
}
3211
3211
3212
3212
export interface ITreeState {
3213
3213
expandedState : {
3214
3214
[ index : string ] : string
3215
- }
3215
+ } ;
3216
3216
}
3217
3217
3218
3218
export interface rowCollapsedHandler < TEntity > {
@@ -3275,7 +3275,7 @@ declare module uiGrid {
3275
3275
MAX : string ;
3276
3276
MIN : string ;
3277
3277
AVG : string ;
3278
- }
3278
+ } ;
3279
3279
}
3280
3280
3281
3281
// Tree View
0 commit comments