D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
whatsapp-api
/
node_modules
/
side-channel-map
/
Filename :
index.d.ts
back
Copy
declare namespace getSideChannelMap { 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 getSideChannelMap<K, V>(): getSideChannelMap.Channel<K, V>; declare const x: false | typeof getSideChannelMap; export = x;