indicator.d.ts 519 B

1234567891011121314151617
  1. import { GUI } from '../../core';
  2. import type { IndicatorOptions, IndicatorStyleProps } from './types';
  3. export { IndicatorOptions, IndicatorStyleProps };
  4. export declare class Indicator extends GUI<IndicatorStyleProps> {
  5. constructor(options: IndicatorOptions);
  6. private group;
  7. private background;
  8. private label;
  9. private point;
  10. private renderBackground;
  11. private renderLabel;
  12. private adjustLayout;
  13. private getPath;
  14. private createCorner;
  15. bindEvents(): void;
  16. render(): void;
  17. }