UNPKG

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