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) 361 B
import { EditData } from "./timeline"; /** 组件公共参数 */ export interface CommonProp extends EditData { /** 刻度个数 */ scaleCount: number; /** 设置刻度个数 */ setScaleCount: (scaleCount: number) => void; /** 光标时间 */ cursorTime: number; /** 当前时间轴宽度 */ timelineWidth: number; }