solid-gauge.d.ts 597 B

123456789101112131415161718192021222324
  1. /*!*
  2. *
  3. * Copyright (c) Highsoft AS. All rights reserved.
  4. *
  5. *!*/
  6. import * as globals from "../globals";
  7. import * as _Highcharts from "../highcharts";
  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" {
  16. interface SymbolOptionsObject {
  17. /**
  18. * Whether to draw rounded edges.
  19. */
  20. rounded?: boolean;
  21. }
  22. }
  23. export default factory;
  24. export let Highcharts: typeof _Highcharts;