- Replaced broken .NET backend with Node.js/Express - Restored original website design with purple gradient hero - Updated homepage and shop pages with Bootstrap 5 responsive design - Disabled GitHub remote sync - all code now stored locally only - Created backup scripts and documentation - All changes saved on Ubuntu server at /var/www/SkyArtShop
15 lines
486 B
TypeScript
15 lines
486 B
TypeScript
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;
|