Fix(Typings): Add OnHeaderCell property to ColumnProps (#9223)

* Fix(Typings): Add OnHeaderCell property to ColumnProps

* onHeaderCell actually receives the ColumnProps object
pull/9242/head
Evert Bouw 7 years ago committed by Wei Zhu
parent ef55562deb
commit 0c69d721de

@ -29,6 +29,7 @@ export interface ColumnProps<T> {
children?: ColumnProps<T>[];
onCellClick?: (record: T, event: any) => void;
onCell?: (record: T) => any;
onHeaderCell?: (props: ColumnProps<T>) => any;
}
export interface TableComponents {

Loading…
Cancel
Save