types: Make TreeNode.key required

pull/5835/head
Jacob Walls 2024-06-05 10:31:08 -04:00
parent 401dd22567
commit c05c42d253
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ export interface TreeNode {
/** /**
* Mandatory unique key of the node. * Mandatory unique key of the node.
*/ */
key?: string; key: string;
/** /**
* Label of the node. * Label of the node.
*/ */