UNPKG
newick
Version:
latest (3.0.1)
3.0.1
3.0.0
3.0.0-rc2
3.0.0-rc1
2.0.0
1.4.0
1.3.3
1.3.2
1.3.1
1.2.3
1.2.2
1.2.1
1.2.0
1.1.2
1.1.1
1.1.0
1.0.2
1.0.1
1.0.0
A Newick tree parser
github.com/octav47/newick.js
octav47/newick.js
newick
/
dist
/
cjs
/
tools
/
stringify.d.ts
8 lines
(7 loc)
•
253 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
NewickNode
}
from
'../types'
;
/** * Converts a NewickNode tree to a full Newick string with trailing semicolon *
@param
node
- Newick tree node *
@returns
Newick format string */
export
declare
function
stringify
(
node
:
NewickNode
):
string
;