jamis
Version:
一种支持通过JSON配置方式生成页面的组件库
13 lines (12 loc) • 485 B
TypeScript
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>;
render(): JSX.Element;
}
export declare class RatingControlRenderer extends RatingControl {
}
export {};