pivot_grid_field_chooser.d.ts 909 B

123456789101112131415161718192021222324
  1. /**
  2. * DevExtreme (ui/pivot_grid_field_chooser.d.ts)
  3. * Version: 19.1.16
  4. * Build date: Tue Oct 18 2022
  5. *
  6. * Copyright (c) 2012 - 2022 Developer Express Inc. ALL RIGHTS RESERVED
  7. * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
  8. */
  9. import DevExpress from '../bundles/dx.all';
  10. declare global {
  11. interface JQuery {
  12. dxPivotGridFieldChooser(): JQuery;
  13. dxPivotGridFieldChooser(options: "instance"): DevExpress.ui.dxPivotGridFieldChooser;
  14. dxPivotGridFieldChooser(options: string): any;
  15. dxPivotGridFieldChooser(options: string, ...params: any[]): any;
  16. dxPivotGridFieldChooser(options: DevExpress.ui.dxPivotGridFieldChooserOptions): JQuery;
  17. }
  18. }
  19. export default DevExpress.ui.dxPivotGridFieldChooser;
  20. export type Options = DevExpress.ui.dxPivotGridFieldChooserOptions;
  21. /** @deprecated use Options instead */
  22. export type IOptions = DevExpress.ui.dxPivotGridFieldChooserOptions;