| 123456789101112131415161718192021222324 |
- /**
- * DevExtreme (ui/autocomplete.d.ts)
- * Version: 19.1.16
- * Build date: Tue Oct 18 2022
- *
- * Copyright (c) 2012 - 2022 Developer Express Inc. ALL RIGHTS RESERVED
- * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
- */
- import DevExpress from '../bundles/dx.all';
- declare global {
- interface JQuery {
- dxAutocomplete(): JQuery;
- dxAutocomplete(options: "instance"): DevExpress.ui.dxAutocomplete;
- dxAutocomplete(options: string): any;
- dxAutocomplete(options: string, ...params: any[]): any;
- dxAutocomplete(options: DevExpress.ui.dxAutocompleteOptions): JQuery;
- }
- }
- export default DevExpress.ui.dxAutocomplete;
- export type Options = DevExpress.ui.dxAutocompleteOptions;
- /** @deprecated use Options instead */
- export type IOptions = DevExpress.ui.dxAutocompleteOptions;
|