UNPKG

antd-mobile

Version:

基于 React 的移动设计规范实现

18 lines (17 loc) 482 B
/// <reference types="react" /> export interface RangeProps { onChange?: (value?: number) => void; onAfterChange?: (value?: number) => void; defaultValue?: number; tipFormatter?: Function | null; value?: number; min?: number; max?: number; step?: number; disabled?: boolean; prefixCls?: string; handleStyle?: React.CSSProperties[]; trackStyle?: React.CSSProperties[]; railStyle?: React.CSSProperties; } export default RangeProps;