File tree Expand file tree Collapse file tree 2 files changed +20
-0
lines changed
typings/jquery-autocomplete Expand file tree Collapse file tree 2 files changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -50,6 +50,11 @@ input.autocomplete({
50
50
}
51
51
} ) ;
52
52
53
+ // ----------------------------------------------------------------------------------------
54
+ // ----------------------------- TEST AUTOCOMPLETE STATIC ---------------------------------
55
+ // ----------------------------------------------------------------------------------------
56
+
57
+ $ . Autocomplete . defaults ;
53
58
54
59
// ----------------------------------------------------------------------------------------
55
60
// ------------------------------ TEST INSTANCE METHODS -----------------------------------
Original file line number Diff line number Diff line change @@ -257,6 +257,15 @@ interface JQueryAutocompleteOptions {
257
257
258
258
}
259
259
260
+ interface AutocompleteStatic {
261
+
262
+ /**
263
+ * Default options for all instances.
264
+ */
265
+ defaults : JQueryAutocompleteOptions
266
+
267
+ }
268
+
260
269
interface AutocompleteInstance {
261
270
262
271
/**
@@ -297,6 +306,12 @@ interface AutocompleteInstance {
297
306
298
307
}
299
308
309
+ interface JQueryStatic {
310
+
311
+ Autocomplete : AutocompleteStatic
312
+
313
+ }
314
+
300
315
interface JQuery {
301
316
302
317
/**
You can’t perform that action at this time.
0 commit comments