Skip to content

Commit

Permalink
types: Make TreeNode.key required
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobtylerwalls committed Jun 5, 2024
1 parent 401dd22 commit c05c42d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/lib/treenode/TreeNode.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export interface TreeNode {
/**
* Mandatory unique key of the node.
*/
key?: string;
key: string;
/**
* Label of the node.
*/
Expand Down

0 comments on commit c05c42d

Please sign in to comment.