Files
med-notes/.pnpm-store/v10/files/47/4dd9f3e2c67dd336700542607ae95e3fbddacf392d489c736d9ef20ae5d44b845f84c0cc6866857b7576ae39994c2c2c21154e8677c57cee1d61294596e897
2025-06-26 03:35:15 +00:00

16 lines
367 B
Plaintext

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;