We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
3dad516
#56 8139792 Thanks @smeijer! - feat: add close method to realtime listener
8139792
const listener = magicbell.listen(); listener.forEach((notification) => { console.log(notification.data.id); }); // stop listening after 5 seconds setTimeout(() => { listener.close(); }, 5_000);