UNPKG

zent

Version:

一套前端设计语言和基于React的实现

26 lines (20 loc) 546 B
/// <reference types="react" /> declare module 'zent/lib/radio' { interface IRadioProps { value: any className?: string prefix?: string } class Radio extends React.Component<IRadioProps, any> { } namespace Radio { interface IGroupProps { value: any onChange: React.ChangeEventHandler<HTMLInputElement> isValueEqual?: (value1: any, value2: any) => boolean className?: string prefix?: string } class Group extends React.Component<IGroupProps, any> { } } export default Radio }