mirror of
https://github.com/devbridge/jQuery-Autocomplete.git
synced 2024-11-22 04:45:12 +00:00
Merge pull request #714 from qqilihq/master
Add static `$.Autocomplete` to typings
This commit is contained in:
commit
52e4899f55
@ -50,6 +50,11 @@ input.autocomplete({
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// ----------------------------------------------------------------------------------------
|
||||||
|
// ----------------------------- TEST AUTOCOMPLETE STATIC ---------------------------------
|
||||||
|
// ----------------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
$.Autocomplete.defaults;
|
||||||
|
|
||||||
// ----------------------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------------------
|
||||||
// ------------------------------ TEST INSTANCE METHODS -----------------------------------
|
// ------------------------------ TEST INSTANCE METHODS -----------------------------------
|
||||||
|
@ -257,6 +257,15 @@ interface JQueryAutocompleteOptions {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
interface AutocompleteStatic {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Default options for all instances.
|
||||||
|
*/
|
||||||
|
defaults: JQueryAutocompleteOptions
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
interface AutocompleteInstance {
|
interface AutocompleteInstance {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -297,6 +306,12 @@ interface AutocompleteInstance {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
interface JQueryStatic {
|
||||||
|
|
||||||
|
Autocomplete: AutocompleteStatic
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
interface JQuery {
|
interface JQuery {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user