diff --git a/types/react-virtualized/dist/es/Table.d.ts b/types/react-virtualized/dist/es/Table.d.ts index c1216f12b1..9b9e7d3d95 100644 --- a/types/react-virtualized/dist/es/Table.d.ts +++ b/types/react-virtualized/dist/es/Table.d.ts @@ -96,6 +96,8 @@ export type ColumnProps = { style?: React.CSSProperties; /** Flex basis (width) for this column; This value can grow or shrink based on :flexGrow and :flexShrink properties. */ width: number; + /** Optional id for column header */ + id?: string; } export class Column extends Component { static propTypes: { @@ -114,7 +116,8 @@ export class Column extends Component { maxWidth: Requireable, minWidth: Requireable, style: Requireable, - width: Validator + width: Validator, + id: Requireable }; static defaultProps: {