| 1234567891011121314151617 |
- import { GUI } from '../../core';
- import type { IndicatorOptions, IndicatorStyleProps } from './types';
- export { IndicatorOptions, IndicatorStyleProps };
- export declare class Indicator extends GUI<IndicatorStyleProps> {
- constructor(options: IndicatorOptions);
- private group;
- private background;
- private label;
- private point;
- private renderBackground;
- private renderLabel;
- private adjustLayout;
- private getPath;
- private createCorner;
- bindEvents(): void;
- render(): void;
- }
|