From a8f80a02b88055cfcb45664ce3a3d24c2b2da98c Mon Sep 17 00:00:00 2001 From: Terry Truong Date: Sun, 10 Jul 2022 23:41:20 +1000 Subject: Update project-level and client-side documentation --- src/tol.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/tol.ts') diff --git a/src/tol.ts b/src/tol.ts index bf7a2f5..2618bfc 100644 --- a/src/tol.ts +++ b/src/tol.ts @@ -1,5 +1,5 @@ /* - * Used to represent tree-of-life data + * Types for representing tree-of-life data */ // Represents a tree-of-life node @@ -8,10 +8,10 @@ export class TolNode { children: string[]; parent: string | null; tips: number; - pSupport: boolean; + pSupport: boolean; // Indicates phylogenetic support commonName: null | string; imgName: null | string | - [string, string] | [null, string] | [string, null]; // Pairs represent compound-images + [string, string] | [null, string] | [string, null]; // Pairs represent compound images constructor(children: string[] = [], parent = null, tips = 0, pSupport = false){ this.otolId = null; this.children = children; -- cgit v1.2.3