indicators-all.src.d.ts 702 B

123456789101112131415161718192021222324252627
  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. /**
  17. * Utility function to check if an item is an array.
  18. *
  19. * @param obj
  20. * The item to check.
  21. *
  22. * @return True if the argument is an array.
  23. */
  24. function isArray(obj: any): boolean;
  25. }
  26. export default factory;
  27. export let Highcharts: typeof _Highcharts;