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