UNPKG

node-red-contrib-web-worldmap

Version:

A Node-RED node to provide a web page of a world map for plotting things on.

14 lines (11 loc) 335 B
declare namespace getSideChannelList { type Channel<K, V> = { assert: (key: K) => void; has: (key: K) => boolean; get: (key: K) => V | undefined; set: (key: K, value: V) => void; delete: (key: K) => boolean; }; } declare function getSideChannelList<V, K>(): getSideChannelList.Channel<K, V>; export = getSideChannelList;