UNPKG

497 BTypeScriptView Raw
1import React, { CSSProperties, MouseEventHandler } from 'react';
2import { CellPropsType } from './PropsType';
3export interface CellProps extends CellPropsType {
4 prefixCls?: string;
5 className?: string;
6 style?: CSSProperties;
7 onClick?: MouseEventHandler<HTMLElement>;
8}
9declare class Cell extends React.Component<CellProps, any> {
10 static defaultProps: {
11 prefixCls: string;
12 };
13 handleHeaderClick: (e: any) => void;
14 render(): JSX.Element;
15}
16export default Cell;