UNPKG

514 BTypeScriptView Raw
1import { CircleStyleProps } from '@antv/f-engine';
2import { GuideProps } from '../withGuide';
3export interface PointGuideProps extends GuideProps {
4 style?: Partial<CircleStyleProps> | ((record?: any) => Partial<CircleStyleProps>);
5 offsetX?: number | string;
6 offsetY?: number | string;
7 points?: {
8 x: number;
9 y: number;
10 }[] | null;
11 theme?: any;
12}
13declare const _default: (props: PointGuideProps, context: any) => import("@antv/f-engine").JSX.Element;
14export default _default;