Skip to content

Latest commit

 

History

History
30 lines (19 loc) · 754 Bytes

README.md

File metadata and controls

30 lines (19 loc) · 754 Bytes

TS-Tree npm version Build Status

TS-Tree is a tiny tree data structure written in Typescript.

Installation

$ npm install --save ts-tree

Usage

Javascript

const Tree = require('ts-tree').Tree;

Typescript

import { Tree } from 'ts-tree';

Note: for this to work, the tsc option --moduleResolution must be set to Node (see microsoft/TypeScript#7984 for more details).

Similar work