CoolFace
Apppublic

opusdev/vector-similarity-api

sourceHugging Faceupdated 5mo agoView on Hugging Face
1likes
index.d.ts15 linesDownload Raw Back to side-channel
1import getSideChannelList from 'side-channel-list';2import getSideChannelMap from 'side-channel-map';3import getSideChannelWeakMap from 'side-channel-weakmap';4 5declare namespace getSideChannel {6	type Channel<K, V> =7		| getSideChannelList.Channel<K, V>8		| ReturnType<Exclude<typeof getSideChannelMap<K, V>, false>>9		| ReturnType<Exclude<typeof getSideChannelWeakMap<K, V>, false>>;10}11 12declare function getSideChannel<K, V>(): getSideChannel.Channel<K, V>;13 14export = getSideChannel;15