Merge pull request #1183 from derekcicerone/patch-27

Fix future bug in slickgrid.d.ts
This commit is contained in:
basarat
2013-10-25 15:35:12 -07:00
+1 -1
View File
@@ -87,7 +87,7 @@ declare module Slick {
* @method subscribe
* @param fn {Function} Event handler.
*/
public subscribe<T>(fn: (eventData: EventData, data: T) => any ): void;
public subscribe(fn: (eventData: EventData, data: T) => any ): void;
/***
* Removes an event handler added with <code>subscribe(fn)</code>.