mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-09 11:13:57 +08:00
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:
Vendored
+1
-1
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user