iching-broker-level2/node_modules/side-channel-weakmap/index.d.ts
Christopher Hase b27a419c2f
All checks were successful
ci / build (push) Successful in 1m33s
add http-server part 5
2025-04-09 11:10:36 +02:00

15 lines
382 B
TypeScript

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;