highcharts-more.src.d.ts 745 B

12345678910111213141516171819202122232425262728
  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 Point {
  17. /**
  18. * Range series only. The high or maximum value for each data point.
  19. */
  20. high?: number;
  21. /**
  22. * Range series only. The low or minimum value for each data point.
  23. */
  24. low?: number;
  25. }
  26. }
  27. export default factory;
  28. export let Highcharts: typeof _Highcharts;