UNPKG

jamis

Version:

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

18 lines (17 loc) 537 B
import React from 'react'; import type { ChartRadiosProps } from '../types'; export default class ChartRadiosControl extends React.Component<ChartRadiosProps, any> { highlightIndex: number; prevIndex: number; chart?: any; chartRef(chart?: any): void; highlight(index?: number): void; compoonentDidMount(): void; componentDidUpdate(): void; render(): JSX.Element; } export declare class ChartRadiosControlRenderer extends ChartRadiosControl { static defaultProps: { multiple: boolean; }; }