deleted project

This commit is contained in:
2025-06-09 17:31:25 +02:00
parent 908b038341
commit 997a5ca393
1200 changed files with 0 additions and 601752 deletions

View File

@@ -1,15 +0,0 @@
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;