From a3a5cd5554dc2c0ff8955d1db0673879af3095bc Mon Sep 17 00:00:00 2001 From: Xaver Schulz Date: Thu, 21 Jan 2016 20:47:23 +0100 Subject: [PATCH] jqueryui - Autocomplete add filter signature add filter signature for jqueryui Autocomplete https://github.com/jquery/jquery-ui/blob/master/ui/widgets/autocomplete.js#L624 --- jqueryui/jqueryui.d.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/jqueryui/jqueryui.d.ts b/jqueryui/jqueryui.d.ts index b3edd59545..a5df2c834c 100644 --- a/jqueryui/jqueryui.d.ts +++ b/jqueryui/jqueryui.d.ts @@ -77,6 +77,7 @@ declare module JQueryUI { interface Autocomplete extends Widget, AutocompleteOptions { escapeRegex: (value: string) => string; + filter: (array: any, term: string) => any; } @@ -363,7 +364,7 @@ declare module JQueryUI { title?: string; width?: any; // number or string zIndex?: number; - + open?: DialogEvent; close?: DialogEvent; }