From 3eff9e52312ca4f2961ef0927b631f772ecf1673 Mon Sep 17 00:00:00 2001 From: AbraaoAlves Date: Fri, 22 Feb 2013 18:15:05 -0300 Subject: [PATCH] define escapeRegex function https://github.com/jquery/jquery-ui/blob/master/ui/jquery.ui.autocomplete.js#L567 --- jqueryui/jqueryui.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/jqueryui/jqueryui.d.ts b/jqueryui/jqueryui.d.ts index f4297377e..f3c9e7e42 100644 --- a/jqueryui/jqueryui.d.ts +++ b/jqueryui/jqueryui.d.ts @@ -73,6 +73,7 @@ interface AutocompleteEvents { } interface Autocomplete extends Widget, AutocompleteOptions, AutocompleteEvents { + escapeRegex: (string) => string; }