Fix optional argument in slickgrid.d.ts

From looking at the code, this argument appears to be optional.  Also, we are omitting it in our code and it works.
This commit is contained in:
Derek Cicerone
2013-10-11 21:46:59 -04:00
parent bd8fc348a4
commit cdbcec0205
+1 -1
View File
@@ -874,7 +874,7 @@ declare module Slick {
* @param title New column name.
* @param toolTip New column tooltip.
**/
public updateColumnHeader(columnId: string, title: string, toolTip?: string): void;
public updateColumnHeader(columnId: string, title?: string, toolTip?: string): void;
// #endregion Columns