Track.d.ts 400 B

1234567891011121314
  1. import * as React from 'react';
  2. import type { OnStartMove } from '../interface';
  3. export interface TrackProps {
  4. prefixCls: string;
  5. style?: React.CSSProperties;
  6. /** Replace with origin prefix concat className */
  7. replaceCls?: string;
  8. start: number;
  9. end: number;
  10. index: number;
  11. onStartMove?: OnStartMove;
  12. }
  13. declare const Track: React.FC<TrackProps>;
  14. export default Track;