Skip to content

Commit 81b951f

Browse files
committed
Merge pull request DefinitelyTyped#7406 from labrute/patch-1
Add missing semicolon in ui-grid.d.ts file
2 parents e3eb489 + f874657 commit 81b951f

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

ui-grid/ui-grid.d.ts

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -114,11 +114,11 @@ declare module uiGrid {
114114
ROW: string;
115115
COLUMN: string;
116116
OPTIONS: string;
117-
}
117+
};
118118
scrollbars: {
119119
NEVER: number;
120120
ALWAYS: number;
121-
}
121+
};
122122
}
123123
export type IGridInstance = IGridInstanceOf<any>;
124124
export interface IGridInstanceOf<TEntity> {
@@ -1057,7 +1057,7 @@ declare module uiGrid {
10571057
* @param {sortChangedHandler} handler callback
10581058
*/
10591059
sortChanged: (scope: ng.IScope, handler: sortChangedHandler<TEntity>) => void;
1060-
}
1060+
};
10611061
}
10621062
export interface columnVisibilityChangedHandler<TEntity> {
10631063
/**
@@ -1211,7 +1211,7 @@ declare module uiGrid {
12111211
* @param {viewportKeyPressHandler} handler Callback
12121212
*/
12131213
viewportKeyPress: (scope: ng.IScope, handler: viewportKeyPressHandler<TEntity>) => void;
1214-
}
1214+
};
12151215
}
12161216

12171217
export interface navigateHandler<TEntity> {
@@ -1282,7 +1282,7 @@ declare module uiGrid {
12821282
KEYDOWN: number;
12831283
CLICK: number;
12841284
CLEAR: number;
1285-
}
1285+
};
12861286
}
12871287
}
12881288

@@ -1481,7 +1481,7 @@ declare module uiGrid {
14811481
BEGIN_CELL_EDIT: string;
14821482
END_CELL_EDIT: string;
14831483
CANCEL_CELL_EDIT: string;
1484-
}
1484+
};
14851485
}
14861486
}
14871487

@@ -1548,7 +1548,7 @@ declare module uiGrid {
15481548
* @param {rowExpandedStateChangedHandler} handler
15491549
*/
15501550
rowExpandedStateChanged: (scope: ng.IScope, handler: rowExpandedStateChangedHandler<TEntity>) => void;
1551-
}
1551+
};
15521552
}
15531553

15541554
export interface rowExpandedStateChangedHandler<TEntity> {
@@ -2300,7 +2300,7 @@ declare module uiGrid {
23002300
* @param {columnPositionChangedHandler} handler Callback Function
23012301
*/
23022302
columnPositionChanged?: (scope: ng.IScope, handler: columnPositionChangedHandler) => void;
2303-
}
2303+
};
23042304
}
23052305
export interface columnPositionChangedHandler {
23062306
(colDef: IColumnDef, originalPosition: number, finalPosition: number): void;
@@ -2387,7 +2387,7 @@ declare module uiGrid {
23872387
* @param {paginationChangedHandler} handler Callback
23882388
*/
23892389
paginationChanged: (scope: ng.IScope, handler: paginationChangedHandler) => void;
2390-
}
2390+
};
23912391
}
23922392

23932393
/**
@@ -2469,7 +2469,7 @@ declare module uiGrid {
24692469
LEFT: string;
24702470
RIGHT: string;
24712471
NONE: string;
2472-
}
2472+
};
24732473
}
24742474
}
24752475

@@ -2508,7 +2508,7 @@ declare module uiGrid {
25082508
* @param {columnSizeChangedHandler} handler Callback
25092509
*/
25102510
columnSizeChanged: (scope: ng.IScope, handler: columnSizeChangedHandler) => void;
2511-
}
2511+
};
25122512
}
25132513

25142514
export interface columnSizeChangedHandler {
@@ -2594,7 +2594,7 @@ declare module uiGrid {
25942594
* @param {saveRowHandler} handler Callback
25952595
*/
25962596
saveRow: (scope: ng.IScope, handler: saveRowHandler<TEntity>) => void;
2597-
}
2597+
};
25982598
}
25992599

26002600
export interface saveRowHandler<TEntity> {
@@ -2973,7 +2973,7 @@ declare module uiGrid {
29732973
* @param {rowSelectionChangedBatchHandler} handler callback
29742974
*/
29752975
rowSelectionChangedBatch: (scope: ng.IScope, handler: rowSelectionChangedBatchHandler<TEntity>) => void;
2976-
}
2976+
};
29772977
}
29782978
export interface rowSelectionChangedHandler<TEntity> {
29792979
/**
@@ -3206,13 +3206,13 @@ declare module uiGrid {
32063206
* @param {rowExpandedHandler} handler Callback
32073207
*/
32083208
rowExpanded: (scope: ng.IScope, handler: rowExpandedHandler<TEntity>) => void;
3209-
}
3209+
};
32103210
}
32113211

32123212
export interface ITreeState {
32133213
expandedState: {
32143214
[index: string]: string
3215-
}
3215+
};
32163216
}
32173217

32183218
export interface rowCollapsedHandler<TEntity> {
@@ -3275,7 +3275,7 @@ declare module uiGrid {
32753275
MAX: string;
32763276
MIN: string;
32773277
AVG: string;
3278-
}
3278+
};
32793279
}
32803280

32813281
// Tree View

0 commit comments

Comments
 (0)