1 | import { ComponentType } from '@antv/f-engine';
|
2 | import Chart, { ChartChildProps, Point } from '../../chart';
|
3 | import { AnimationProps } from '@antv/f-engine';
|
4 | export interface GuideProps {
|
5 | records: any;
|
6 | onClick?: (ev: any) => void;
|
7 | animation?: ((points: Point[], chart: Chart) => AnimationProps) | AnimationProps;
|
8 | [key: string]: any;
|
9 | }
|
10 | export default function <IProps extends GuideProps = GuideProps>(View: ComponentType<IProps & ChartChildProps>): ComponentType<IProps & ChartChildProps>;
|
11 |
|
\ | No newline at end of file |