UNPKG

zent

Version:

一套前端设计语言和基于React的实现

13 lines (12 loc) 402 B
/// <reference types="react" /> export interface ISliderDotsProps { marks: Record<number | string, React.ReactNode>; min: number; max: number; activeLeft: number; activeRight: number; potentialValues: number[]; disabled: boolean; } declare function Dots({ min, max, activeLeft, activeRight, potentialValues, disabled, }: ISliderDotsProps): JSX.Element; export default Dots;