export default class Node { public key:Key; public data:any; public left:Node|null; public right:Node|null; public next:Node|null = null; constructor (key:Key, data?:any) { this.key = key; this.data = data; this.left = null; this.right = null; } }