From f9d722838776698c634a9af179d10eb3a7858c4e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs=20Garc=C3=ADa=20Sojo?= Date: Fri, 11 Dec 2015 09:12:43 +0100 Subject: [PATCH] Fix position type, string to any, in jQueryui autocompleteOptions https://api.jqueryui.com/autocomplete/#option-position --- jqueryui/jqueryui.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jqueryui/jqueryui.d.ts b/jqueryui/jqueryui.d.ts index 9dd576e1a..ade8eb735 100644 --- a/jqueryui/jqueryui.d.ts +++ b/jqueryui/jqueryui.d.ts @@ -49,7 +49,7 @@ declare module JQueryUI { delay?: number; disabled?: boolean; minLength?: number; - position?: string; + position?: any; // object source?: any; // [], string or () }