antd-mini
Version:
antd-mini 是支付宝小程序 UI 组件库,遵循 Ant Design 规范。
8 lines (7 loc) • 326 B
TypeScript
import { IRateProps } from '../../Rate/props';
import { FormItemProps } from '../FormItem/props';
export interface FormRateProps extends Omit<IRateProps, 'defaultValue'>, Omit<FormItemProps, 'readonly'> {
rateClassName?: string;
rateStyle?: string;
}
export declare const FormRateDefaultProps: Partial<FormRateProps>;