UNPKG

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