UNPKG

mobile-more

Version:

基于 antd-mobile v5 扩展移动端 UI 组件

14 lines (13 loc) 579 B
import { RateProps } from 'antd-mobile'; import * as React from 'react'; import { BizFormItemProps } from '../FormItem'; import './index.less'; export interface BizFormItemRateProps extends Omit<BizFormItemProps, 'children'>, Pick<RateProps, 'allowClear' | 'allowHalf' | 'character' | 'count' | 'readOnly'> { /** * @description 透传 Rate 组件属性。 * @see {@link https://mobile.ant.design/zh/components/rate#属性|RateProps} */ rateProps?: RateProps; } declare const BizFormItemRate: React.FC<BizFormItemRateProps>; export default BizFormItemRate;