UNPKG

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