From 4ac8d103f29f891401138c72501c46785180ac91 Mon Sep 17 00:00:00 2001 From: Aaron King Date: Thu, 26 Dec 2013 14:56:50 -0500 Subject: [PATCH] jquery.ContextMenu - Fixed signature for callback option --- jquery.contextMenu/jquery.contextMenu.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jquery.contextMenu/jquery.contextMenu.d.ts b/jquery.contextMenu/jquery.contextMenu.d.ts index 1a8d0664a..95e890c20 100644 --- a/jquery.contextMenu/jquery.contextMenu.d.ts +++ b/jquery.contextMenu/jquery.contextMenu.d.ts @@ -24,7 +24,7 @@ interface JQueryContextMenuOptions { show?: () => void; hide?: () => void; }; - callback?: (...args: any[]) => any; + callback?: (key: any, options: any) => any; items: any; }