UNPKG

evo-timeline-editor-react

Version:

[![npm version](https://img.shields.io/npm/v/evo-timeline-editor-react?style=flat-square)](https://www.npmjs.com/package/evo-timeline-editor-react)

18 lines (17 loc) 562 B
import { FC } from 'react'; import { OnScrollParams } from 'react-virtualized'; import { CommonProp } from '../../interface/common_prop'; /** 动画时间轴组件参数 */ export type TimeAreaProps = CommonProp & { /** 左侧滚动距离 */ scrollLeft: number; /** 滚动回调,用于同步滚动 */ onScroll: (params: OnScrollParams) => void; /** 设置光标位置 */ setCursor: (param: { left?: number; time?: number; }) => void; }; /** 动画时间轴组件 */ export declare const TimeArea: FC<TimeAreaProps>;