1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 08:43:33 +00:00

Nested folders

This commit is contained in:
Kyle Spearrin
2018-10-25 09:38:37 -04:00
parent 06f129e2c1
commit 6aba4550a4
4 changed files with 64 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
export class TreeNode<T> {
node: T;
children: Array<TreeNode<T>> = [];
constructor(node: T) {
this.node = node;
}
}