jquery.ContextMenu - Fixed signature for callback option

This commit is contained in:
Aaron King
2013-12-26 14:56:50 -05:00
parent 079acf4f0e
commit 4ac8d103f2
+1 -1
View File
@@ -24,7 +24,7 @@ interface JQueryContextMenuOptions {
show?: () => void;
hide?: () => void;
};
callback?: (...args: any[]) => any;
callback?: (key: any, options: any) => any;
items: any;
}