[read-package-tree] Add the missing name field

This commit is contained in:
Ivan Akulov
2018-05-12 21:55:45 +03:00
committed by GitHub
parent a68f617d89
commit 83e3a609f0

View File

@@ -9,6 +9,7 @@ declare function rpt(root: string, filterWith: (node: rpt.Node, kidName: string)
declare namespace rpt {
class Node {
id: number;
name: string;
package: any;
children: Node[];
parent: Node | null;