UNPKG

@antv/f2

Version:

Charts for mobile visualization.

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