UNPKG

shineout

Version:

Shein 前端组件库

10 lines (9 loc) 304 B
import { PureComponent } from 'react'; import { BoxOptionProps } from './Props'; declare class BoxOption<Item> extends PureComponent<BoxOptionProps<Item>> { locked: boolean; constructor(props: BoxOptionProps<Item>); handleClick(): void; render(): JSX.Element; } export default BoxOption;