@antv/f2
Version:
Charts for mobile visualization.
18 lines (17 loc) • 474 B
TypeScript
import { AnimationProps } from '@antv/f-engine';
type LottieGuideProps = {
points?: {
x: number;
y: number;
}[] | null;
data?: string;
offsetX?: number | number[];
offsetY?: number | number[];
animation: AnimationProps;
options: {
loop: boolean | number;
autoplay: boolean;
};
};
declare const _default: (props: LottieGuideProps, context: any) => import("@antv/f-engine").JSX.Element;
export default _default;