jiaqingjiayi-xiaochengxu/甲情_甲意/miniprogram/node_modules/antd-mini/es/Rate/props.d.ts

56 lines
900 B
TypeScript
Raw Normal View History

2024-11-10 07:01:22 +00:00
import { IBaseProps } from '../_base';
export interface IRateProps extends IBaseProps {
/**
* @description
*/
rate?: number;
/**
* description
*/
defaultRate?: number;
/**
* description
*/
gutter?: number;
/**
* @description
*/
allowHalf?: boolean;
/**
* @description
*/
allowClear?: boolean;
/**
* @description star
*/
count?: number;
/**
* @description
*/
characterActiveClassName?: string;
/**
* @description
*/
characterClassName?: string;
/**
* @description
*/
readonly?: boolean;
/**
* @description
*/
onChange?: (rate: number) => void;
}
export declare const RateDefaultProps: Partial<IRateProps>;