microsoft / TypeScript-Handbook

Deprecated, please use the TypeScript-Website repo instead
https://github.com/microsoft/TypeScript-Website
Apache License 2.0
4.88k stars 1.13k forks source link

Fixed Tree data structure definition #1335

Closed juanigaray closed 3 years ago

juanigaray commented 3 years ago

The Tree type defines a node of a tree which must have two Tree chidren. This makes it impossible for there to be leaf nodes. This commit makes the Tree type definition realistic, making both subtrees optional.

Fixes #1339

orta commented 3 years ago

Thanks! Added this to the new site in https://github.com/microsoft/TypeScript-Website/pull/832