zent
Version:
一套前端设计语言和基于React的实现
11 lines (10 loc) • 331 B
TypeScript
/// <reference types="react" />
export declare type PointId = 'point-left' | 'point-right' | 'point-single';
export interface ISliderPointProps {
value: number;
disabled?: boolean;
position: string;
active: boolean;
}
declare function SliderPoint(props: ISliderPointProps): JSX.Element;
export default SliderPoint;