| 123456789101112131415161718192021222324 |
- /**
- * DevExtreme (ui/scroll_view.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 {
- dxScrollView(): JQuery;
- dxScrollView(options: "instance"): DevExpress.ui.dxScrollView;
- dxScrollView(options: string): any;
- dxScrollView(options: string, ...params: any[]): any;
- dxScrollView(options: DevExpress.ui.dxScrollViewOptions): JQuery;
- }
- }
- export default DevExpress.ui.dxScrollView;
- export type Options = DevExpress.ui.dxScrollViewOptions;
- /** @deprecated use Options instead */
- export type IOptions = DevExpress.ui.dxScrollViewOptions;
|