• File: index.d-20260701101747-20260701173910.ts
  • Full Path: /home6/laduliya/mobile.digitalilab.com/side-channel-weakmap/test/index.d-20260701101747-20260701173910.ts
  • Date Modified: 10/26/1985 8:15 AM
  • File size: 382 bytes
  • MIME-type: text/plain
  • Charset: utf-8
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;