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)

12 lines (11 loc) 291 B
import { FC } from 'react'; export interface DragLineData { isMoving: boolean; movePositions: number[]; assistPositions: number[]; } export type DragLineProps = DragLineData & { scrollLeft: number; }; /** 拖拽辅助线 */ export declare const DragLines: FC<DragLineProps>;