minishouyin/node_modules/antd/es/rate/index.d.ts

9 lines
332 B
TypeScript
Raw Permalink Normal View History

2025-11-12 11:35:57 +08:00
import * as React from 'react';
import type { RateRef, RateProps as RcRateProps } from 'rc-rate/lib/Rate';
export interface RateProps extends RcRateProps {
rootClassName?: string;
tooltips?: Array<string>;
}
declare const Rate: React.ForwardRefExoticComponent<RateProps & React.RefAttributes<RateRef>>;
export default Rate;