jamis
Version:
一种支持通过JSON配置方式生成页面的组件库
17 lines (16 loc) • 585 B
TypeScript
import React from 'react';
import type { ActionObject, Option } from 'jamis-core';
import type { RadiosProps } from '../types';
export default class RadiosControl extends React.Component<RadiosProps, any> {
static defaultProps: Partial<RadiosProps>;
doAction(action: ActionObject, data: object, throwErrors: boolean): void;
handleChange(option: Option): Promise<void>;
reload(): void;
render(): JSX.Element;
}
export declare class RadiosControlRenderer extends RadiosControl {
static defaultProps: {
multiple: boolean;
inline: boolean;
};
}