Merge pull request #5835 from jacobtylerwalls/require-key

types: Make TreeNode.key required
pull/5858/head
Tuğçe Küçükoğlu 2024-06-07 15:50:40 +03:00 committed by GitHub
commit 1f25f45c01
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. * Mandatory unique key of the node.
*/ */
key?: string; key: string;
/** /**
* Label of the node. * Label of the node.
*/ */