UNPKG

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