mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-09 11:13:57 +08:00
fixing missing return types. thanks Travis!
This commit is contained in:
@@ -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;
|
||||
|
||||
Vendored
+2
-2
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user