Merge pull request #6011 from jacobtylerwalls/require-key-treenode-v4
types: Make TreeNode.key requiredpull/6101/head
commit
14e1f6f0cd
|
@ -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.
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue