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)

13 lines (12 loc) 349 B
import { EditData } from './timeline'; /** 组件公共参数 */ export interface CommonProp extends EditData { /** 刻度个数 */ scaleCount: number; /** 设置刻度个数 */ setScaleCount: (scaleCount: number) => void; /** 光标时间 */ cursorTime: number; /** 当前时间轴宽度 */ timelineWidth: number; }