UNPKG

@molejs/mole-components-web

Version:

React组件库

22 lines (21 loc) 760 B
import React, { MouseEventHandler } from 'react'; import { NumberBoards } from './PropsType'; import ChildBoard from './board'; export interface NumberBoardsProps extends NumberBoards { prefixCls?: string; className?: string; style?: React.CSSProperties; isShowTitle?: boolean; thumb?: any; titleLeftText?: string; titleRightText?: string; isShowDivideLine?: boolean; onTitleClick?: MouseEventHandler<HTMLDivElement>; } export default class Boards extends React.Component<NumberBoardsProps, any> { static ChildBoard: typeof ChildBoard; static defaultProps: Partial<NumberBoardsProps>; constructor(props: any); renderBoardsList: (isShowDivideLine: boolean, children: any) => any; render(): JSX.Element; }