nicecode-v2/packages/meta/lib/VideoPlayer/components/Progress/index.d.ts
2024-01-16 11:44:26 +08:00

11 lines
307 B
TypeScript

import React from 'react';
import type { SliderSingleProps } from 'antd';
import './index.less';
export interface RangeWrapperProps extends SliderSingleProps {
showSlider: boolean;
className?: string;
min: number;
}
export declare const Range: React.FC<RangeWrapperProps>;
export default Range;