Files
red-valley/nui-simulator/node_modules/side-channel-weakmap/index.d.ts
Kotzu 319050b353 NUI-SIM
incercare de NUI-Offline Viewer ca sa nu mai intru in joc pt a vedea NUI-uri.
2026-03-30 01:40:16 +03:00

16 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;