1 | import { Chart } from '../interface';
|
2 | export declare class Connector {
|
3 | id: string;
|
4 | protected type: string;
|
5 | protected cfg: Record<string, any>;
|
6 | constructor(type: any);
|
7 | chartMap: {};
|
8 | state: {};
|
9 | connect(id: any, chart: Chart, pointFinder?: Function): this;
|
10 | unConnect(id: any): void;
|
11 | destroy(): void;
|
12 | }
|
13 | declare const createTooltipConnector: () => Connector;
|
14 | export declare const registerConnector: (cid: string, tid: string, chart: Chart | null, shared: any, pointFinder?: Function) => void;
|
15 | export default createTooltipConnector;
|