Skip to content

Commit

Permalink
Fix #2881: TreeTable typescript def for value (#2883)
Browse files Browse the repository at this point in the history
  • Loading branch information
melloware authored May 12, 2022
1 parent 768628d commit 78eb175
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/lib/treetable/TreeTable.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ interface TreeTableColReorderParams {
columns: React.ReactElement;
}

export interface TreeTableProps extends Omit<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLDivElement>, HTMLDivElement>, 'onContextMenu' | 'onSelect' | 'ref'> {
export interface TreeTableProps extends Omit<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLDivElement>, HTMLDivElement>, 'onContextMenu' | 'onSelect' | 'ref' | 'value'> {
id?: string;
value?: TreeNode[];
header?: React.ReactNode;
Expand Down

0 comments on commit 78eb175

Please sign in to comment.