@antv/f2
Version:
Charts for mobile visualization.
14 lines (13 loc) • 368 B
TypeScript
import { CircleStyleProps } from '@antv/f-engine';
type PointGuideProps = {
style?: CircleStyleProps;
offsetX?: number;
offsetY?: number;
points?: {
x: number;
y: number;
}[] | null;
theme?: any;
};
declare const _default: (props: PointGuideProps, context: any) => import("@antv/f-engine").JSX.Element;
export default _default;