Skip to content

Type Alias: TreeNode

ts
type TreeNode = {
[key: string]: any;
  children?: TreeNode[];
};

Indexable

ts
[key: string]: any

Properties

PropertyType
children?TreeNode[]

Released under the MIT License.