UNPKG

636 BTypeScriptView Raw
1import { AnimationProps } from '@antv/f-engine';
2import { GuideProps } from '../withGuide';
3export interface LottieGuideProps extends GuideProps {
4 points?: {
5 x: number;
6 y: number;
7 }[] | null;
8 data?: string;
9 offsetX?: number | string | (string | number)[];
10 offsetY?: number | string | (string | number)[];
11 animation: AnimationProps | ((points?: any, chart?: any) => AnimationProps);
12 options?: {
13 loop: boolean | number;
14 autoplay: boolean;
15 };
16}
17declare const _default: (props: LottieGuideProps, context: any) => import("@antv/f-engine").JSX.Element;
18export default _default;