We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d556a87 + bfd9899 commit 2b29ca6Copy full SHA for 2b29ca6
typings/jquery-autocomplete/jquery.autocomplete.d.ts
@@ -130,7 +130,7 @@ interface JQueryAutocompleteOptions {
130
* Callback function or lookup array for the suggestions. It may be array of strings or suggestion object literals.
131
* -> suggestion: An object literal with the following format: { value: 'string', data: any }.
132
*/
133
- lookup?: Function | AutocompleteSuggestion[];
+ lookup?: { (query: string, done: { (results: AutocompleteResponse): void }): void } | string[] | AutocompleteSuggestion[];
134
135
/**
136
* Filter function for local lookups. By default it does partial string match (case insensitive).
0 commit comments