UNPKG

newick

Version:
8 lines (7 loc) 289 B
import { NewickNode } from '../types'; /** * Recursively serialize a NewickNode tree into a Newick-format string (without trailing semicolon) * @param node - Newick tree node * @returns Newick string for the node subtree */ export declare function serialize(node: NewickNode): string;