Merge pull request #6011 from jacobtylerwalls/require-key-treenode-v4

types: Make TreeNode.key required
pull/6101/head
Tuğçe Küçükoğlu 2024-07-22 14:04:20 +03:00 committed by GitHub
commit 14e1f6f0cd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

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