amis-rpc-design/node_modules/antd/lib/rate/index.d.ts

9 lines
332 B
TypeScript
Raw Normal View History

2023-10-07 19:42:30 +08:00
import type { RateRef, RateProps as RcRateProps } from 'rc-rate/lib/Rate';
import * as React from 'react';
export interface RateProps extends RcRateProps {
rootClassName?: string;
tooltips?: Array<string>;
}
declare const Rate: React.ForwardRefExoticComponent<RateProps & React.RefAttributes<RateRef>>;
export default Rate;