UNPKG

dtd

Version:

根据数梦工场视觉规范打造的组件库,感谢react-components和ant design

12 lines (11 loc) 441 B
import * as React from 'react'; import { SelectionBoxProps, SelectionBoxState } from './interface'; export default class SelectionBox extends React.Component<SelectionBoxProps, SelectionBoxState> { unsubscribe: () => void; constructor(props: SelectionBoxProps); componentDidMount(): void; componentWillUnmount(): void; subscribe(): void; getCheckState(props: SelectionBoxProps): boolean; render(): JSX.Element; }