aboutsummaryrefslogtreecommitdiff
path: root/src/tol.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/tol.ts')
-rw-r--r--src/tol.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tol.ts b/src/tol.ts
index 46dccd7..77c401e 100644
--- a/src/tol.ts
+++ b/src/tol.ts
@@ -17,11 +17,13 @@ export class TolNode {
license: string,
copyrightOwner: string
};
+ desc: null | [string, boolean];
constructor(children: string[] = [], parent = null, tips = 0, pSupport = false){
this.children = children;
this.parent = parent;
this.tips = tips;
this.pSupport = pSupport;
this.img = null;
+ this.desc = null;
}
}