UNPKG

jamis

Version:

一种支持通过JSON配置方式生成页面的组件库

15 lines (14 loc) 597 B
import React from 'react'; import type { ActionObject } from 'jamis-core'; import type { InputRatingProps } from './types'; declare class RatingControl extends React.Component<InputRatingProps, any> { static defaultProps: Partial<InputRatingProps>; doAction(action: ActionObject, data: object, throwErrors: boolean): void; handleChange(value: any): Promise<void>; pickClassStyle: import("jamis-core").PickClassStyleFn; renderSlotBody: import("..").RenderSlotBodyType; render(): JSX.Element; } export declare class RatingControlRenderer extends RatingControl { } export {};