Index: frontend/node_modules/side-channel-map/index.d.ts
===================================================================
--- frontend/node_modules/side-channel-map/index.d.ts	(revision 9af201e94b5a79beb92a30858fc54de4bc3b9449)
+++ frontend/node_modules/side-channel-map/index.d.ts	(revision 9af201e94b5a79beb92a30858fc54de4bc3b9449)
@@ -0,0 +1,15 @@
+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;
