Réorganisation du projet, les exercices sont contenus dans des directories dédiés

This commit is contained in:
2025-04-14 12:04:59 +02:00
parent 4c33d81d95
commit c0ef56a44e
606 changed files with 0 additions and 0 deletions

14
Exercice-1/node_modules/side-channel/index.d.ts generated vendored Normal file
View File

@@ -0,0 +1,14 @@
import getSideChannelList from 'side-channel-list';
import getSideChannelMap from 'side-channel-map';
import getSideChannelWeakMap from 'side-channel-weakmap';
declare namespace getSideChannel {
type Channel<K, V> =
| getSideChannelList.Channel<K, V>
| ReturnType<Exclude<typeof getSideChannelMap<K, V>, false>>
| ReturnType<Exclude<typeof getSideChannelWeakMap<K, V>, false>>;
}
declare function getSideChannel<K, V>(): getSideChannel.Channel<K, V>;
export = getSideChannel;