UNPKG

node-red-contrib-tak-registration

Version:

A Node-RED node to register to TAK and to help wrap files as datapackages to send to TAK

15 lines (13 loc) 335 B
export default class Node<Key, Value> { public key:Key; public data:any; public left:Node<Key, Value>|null; public right:Node<Key, Value>|null; public next:Node<Key, Value>|null = null; constructor (key:Key, data?:any) { this.key = key; this.data = data; this.left = null; this.right = null; } }