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

9 lines (8 loc) 216 B
export default class Node<Key, Value> { key: Key; data: any; left: Node<Key, Value> | null; right: Node<Key, Value> | null; next: Node<Key, Value> | null; constructor(key: Key, data?: any); }