dumbbell.src.d.ts 949 B

1234567891011121314151617181920212223242526272829303132
  1. /*!*
  2. *
  3. * Copyright (c) Highsoft AS. All rights reserved.
  4. *
  5. *!*/
  6. import * as globals from "../globals.src";
  7. import * as _Highcharts from "../highcharts.src";
  8. /**
  9. * Adds the module to the imported Highcharts namespace.
  10. *
  11. * @param highcharts
  12. * The imported Highcharts namespace to extend.
  13. */
  14. export function factory(highcharts: typeof Highcharts): void;
  15. declare module "../highcharts.src" {
  16. interface Series {
  17. /**
  18. * Get non-presentational attributes for a point. Used internally for
  19. * both styled mode and classic. Set correct position in link with
  20. * connector line.
  21. *
  22. * @param this
  23. * The series of points.
  24. *
  25. * @return A hash containing those attributes that are not settable from
  26. * CSS.
  27. */
  28. markerAttribs(this: Series): SVGAttributes;
  29. }
  30. }
  31. export default factory;
  32. export let Highcharts: typeof _Highcharts;