fixing missing return types. thanks Travis!

This commit is contained in:
Ray
2015-07-21 17:29:23 -04:00
parent 67fdc1b040
commit 21c47b36e2
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -87,7 +87,7 @@ columnDef.width = 100;
columnDef.width = '*';
var gridApi: uiGrid.IGridApi
var gridApi: uiGrid.IGridApi;
var gridInstance: uiGrid.IGridInstance;
var menuItem: uiGrid.IMenuItem;
var colProcessor: uiGrid.IColumnProcessor;
+2 -2
View File
@@ -251,7 +251,7 @@ declare module uiGrid {
clearRowInvisible(rowEntity: IGridRow): void;
getVisibleRows(grid: IGridInstance): Array<IGridRow>;
handleWindowResize(): void;
notifiyDataChange(type): void;
notifiyDataChange(type: string): void;
refreshRows(): ng.IPromise<boolean>;
registerColumnsProcessor(processorFunction: IColumnProcessor, priority: number): void;
registerRowsProcessor(rowProcessor: IRowProcessor, priority: number): void;
@@ -261,7 +261,7 @@ declare module uiGrid {
setRowInvisible(rowEntity: IGridRow): void;
sortHandleNulls(a: any,b: any): number;
queueGridRefresh(): void;
queueRefresh();
queueRefresh(): void;
on: {
sortChanged: (scope: ng.IScope, handler: (grid: IGridInstance, sortColumns: Array<IColumnDef>) => void) => void;
columnVisiblityChanged: (scope: ng.IScope, handler: (grid: IGridColumn) => void) => void;