UNPKG

node-red-contrib-web-worldmap

Version:

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

16 lines (12 loc) 382 B
declare namespace getSideChannelWeakMap { 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 getSideChannelWeakMap<K, V>(): getSideChannelWeakMap.Channel<K, V>; declare const x: false | typeof getSideChannelWeakMap; export = x;