UNPKG

@antv/f2

Version:

Charts for mobile visualization.

13 lines (12 loc) 425 B
import { ArcStyleProps } from '@antv/f-engine'; import { GuideProps } from '../withGuide'; export interface ArcGuideProps extends GuideProps { points?: { x: number; y: number; }[] | null; style?: Partial<ArcStyleProps> | ((record?: any) => Partial<ArcStyleProps>); theme?: any; } declare const _default: (props: ArcGuideProps) => import("@antv/f-engine").JSX.Element; export default _default;