UNPKG

@xzdarcy/react-timeline-editor

Version:

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

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