You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
510 B
11 lines
510 B
import * as React from 'react';
|
|
import { ColumnsType, StickyOffsets, ColumnType, GetComponentProps } from '../interface';
|
|
export interface HeaderProps<RecordType> {
|
|
columns: ColumnsType<RecordType>;
|
|
flattenColumns: ColumnType<RecordType>[];
|
|
stickyOffsets: StickyOffsets;
|
|
onHeaderRow: GetComponentProps<ColumnType<RecordType>[]>;
|
|
}
|
|
declare function Header<RecordType>({ stickyOffsets, columns, flattenColumns, onHeaderRow, }: HeaderProps<RecordType>): React.ReactElement;
|
|
export default Header;
|